From 3a8ec502da60dc1ab7ad7df037743a0ac98e9c6f Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Tue, 2 Jul 2024 22:36:33 +0200 Subject: [PATCH] (#20) Release: bundle verify.html This updates our GitHub action to also ship the verify.html for releases we do. --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bac4d2e..cff198b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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