Skip to content

Commit 97fce26

Browse files
committed
ci: fix the attestation step
The path is incorrect because we meant to capture the value of `$PWD` before running `popd`.
1 parent 5b804f7 commit 97fce26

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/release.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,8 @@ jobs:
100100
tar cvzf $ASSET_NAME xsnippet-api
101101
fi
102102
gh release upload $RELEASE_TAG $ASSET_NAME
103-
popd
104-
105103
echo "asset_path=$PWD/$ASSET_NAME" >> $GITHUB_OUTPUT
104+
popd
106105
env:
107106
ASSET_NAME: ${{ matrix.name }}
108107
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)