1
0

Add clean step to workflow
All checks were successful
Build Jekyll weblog / build (push) Successful in 3s

This commit is contained in:
JackCarterSmith 2023-09-21 15:31:25 +02:00
parent d836338b70
commit bb8b93db47
Signed by: JackCarterSmith
GPG Key ID: 832E52F4E23F8F24

View File

@ -18,6 +18,10 @@ jobs:
lfs: false lfs: false
token: ${{ gitea.token }} token: ${{ gitea.token }}
fetch: 1 fetch: 1
- name: Clean 🧹
run: bundle exec --no-color jekyll clean -d $OUT_DIR
env:
OUT_DIR: ${{ secrets.PUB_DIR }}
- run: echo "Trying to build commit ${{ gitea.ref }} from repository." - run: echo "Trying to build commit ${{ gitea.ref }} from repository."
- name: Build ⚙️ - name: Build ⚙️
run: bundle exec --no-color jekyll build -d $OUT_DIR run: bundle exec --no-color jekyll build -d $OUT_DIR