Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
vim -eu tools/maketags.vim

cd ..
- name: Check commit ID
id: commitid
run: |
echo "id=$(git -C work rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Update target
run: |
cd target
Expand All @@ -61,6 +65,9 @@ jobs:

https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}

Used commit:
https://github.com/${{ github.repository }}/commit/${{ steps.commitid.outputs.id }}

deploy:
runs-on: ubuntu-latest
needs: generate
Expand Down Expand Up @@ -97,6 +104,10 @@ jobs:
make html

cd ..
- name: Check commit ID
id: commitid
run: |
echo "id=$(git -C work rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Update target
run: |
cd target
Expand All @@ -116,3 +127,6 @@ jobs:
Generated by GitHub workflow ${{ github.run_id }}

https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}

Used commit:
https://github.com/${{ github.repository }}/commit/${{ steps.commitid.outputs.id }}