Update .gitea/workflows/deploy.yml
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s Details

This commit is contained in:
Alice 2024-07-08 19:53:22 -03:00
parent 44d48fa204
commit 1fd3199f81
1 changed files with 8 additions and 8 deletions

View File

@ -11,16 +11,16 @@ jobs:
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code - name: Check out repository code
uses: RouxAntoine/checkout@v3.5.4 uses: RouxAntoine/checkout@v3.5.4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - 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." - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: Setup env - name: Setup env
-run: sudo apt install bundler - run: sudo apt install bundler
- name: Setup bundle deps - name: Setup bundle deps
- run: | - run: cd ${{ gitea.workspace }}
cd ${{ gitea.workspace }} - run: bundle install
bundle install
- name: Build - name: Build
- run: bundle exec jekyll build - run: bundle exec jekyll build
- run: echo "🍏 This job's status is ${{ job.status }}." - run: echo "🍏 This job's status is ${{ job.status }}."