Workflow: fix incorrect hugo binary path
Build and deploy site / deploy (push) Failing after 10s Details

This commit is contained in:
Jarrod Doyle 2024-03-16 11:32:53 +00:00
parent 7463edb988
commit 98e20e2ebd
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ jobs:
- name: Unpack Hugo - name: Unpack Hugo
run: mkdir -p ${{ gitea.workspace }}/bin && tar -xf /tmp/hugo/* -C ${{ gitea.workspace }}/bin run: mkdir -p ${{ gitea.workspace }}/bin && tar -xf /tmp/hugo/* -C ${{ gitea.workspace }}/bin
- name: Build the static webpage - name: Build the static webpage
run: ${{ gitea.workspace }}/bin/hugo --minify run: ./${{ gitea.workspace }}/bin/hugo --minify
- name: Create private key - name: Create private key
run: | run: |
echo "${{ secrets.ACT_RUNNER_KEY }}" > /tmp/act_runner_key echo "${{ secrets.ACT_RUNNER_KEY }}" > /tmp/act_runner_key