From cd0001703b6a35d06271b607699c829f27cdd899 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Mon, 22 Apr 2024 13:52:33 -0700 Subject: [PATCH] change format of published tar file --- .gitea/workflows/build.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 1d09755..7492a49 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -44,8 +44,12 @@ jobs: run: | tar -czf ${{ runner.temp }}/${{ github.sha }}-with-models.tar.gz \ --format ustar \ - --exclude 'zig-*' \ - --transform 's,^,${{ github.sha }}/,' * + --exclude 'zig-*' + # Something in this PR broke this transform. I don't mind removing it, but + # the PR attempts to handle situations with or without a prefix, but it + # doesn't. I have not yet determined what the problem is, though + # https://github.com/ziglang/zig/pull/19111/files + # --transform 's,^,${{ github.sha }}/,' * # - name: Sign # id: sign # uses: https://git.lerch.org/lobo/action-hsm-sign@v1