Skip to content

Commit

Permalink
(#20) Release: bundle verify.html
Browse files Browse the repository at this point in the history
This updates our GitHub action to also ship the verify.html for releases
we do.
  • Loading branch information
bastelfreak authored and spb committed Jul 3, 2024
1 parent ceb4d4c commit 3a8ec50
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ jobs:
with:
command: build
args: --target ${{ matrix.target }} --release --target-dir /tmp
- name: Copy assets into upload dir
run: cp --archive --verbose templates/verify.html /tmp/${{ matrix.target }}/release/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: /tmp/${{ matrix.target }}/release/curite
path: |
/tmp/${{ matrix.target }}/release/curite
/tmp/${{ matrix.target }}/release/verify.html

0 comments on commit 3a8ec50

Please sign in to comment.