From 46c44bbebc141937e1eb345e986cd2bfa30ed2e8 Mon Sep 17 00:00:00 2001 From: tnichols217 <62992267+tnichols217@users.noreply.github.com> Date: Sun, 26 Oct 2025 20:48:49 +0000 Subject: [PATCH] fix github action (#9) --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index edca334..586d8f4 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,9 +37,9 @@ jobs: nix build --experimental-features "nix-command flakes" .#deploy - name: Get current datetime id: datetime - run: echo "now=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT + run: echo "now=$(date -u +'%Y-%m-%dT%H%M%SZ')" >> $GITHUB_OUTPUT - uses: ncipollo/release-action@v1 with: artifacts: "result/pdf/*,result/*.tar.gz" - tag: release-${{ steps.datetime.outputs.now }}-${{ github.run_number }} - name: ${{ steps.datetime.outputs.now }} + tag: release-${{ steps.datetime.outputs.now }}-R${{ github.run_number }} + name: Release ${{ steps.datetime.outputs.now }}