Update .gitea/workflows/deploy.yml
Deploy / Deploy (push) Successful in 1m37s
Details
Deploy / Deploy (push) Successful in 1m37s
Details
This commit is contained in:
parent
4bbcde0d40
commit
4d51c67350
|
@ -1,27 +1,27 @@
|
|||
name: Gitea Actions Demo
|
||||
name: Deploy
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
Deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
|
||||
- name: Check out repository code
|
||||
uses: RouxAntoine/checkout@v3.5.4
|
||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||
|
||||
|
||||
- name: Setup env
|
||||
run: |
|
||||
sudo apt update -y
|
||||
sudo apt install bundler -y
|
||||
|
||||
- run: cd ${{ gitea.workspace }}
|
||||
|
||||
- name: Setup bundle deps
|
||||
run: cd ${{ gitea.workspace }}
|
||||
- run: bundle install
|
||||
run: bundle install
|
||||
|
||||
- name: Build
|
||||
run: bundle exec jekyll build
|
||||
|
|
Loading…
Reference in New Issue