We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c2e4e2 commit 4e4b018Copy full SHA for 4e4b018
.github/workflows/build-push.yml
@@ -111,7 +111,11 @@ jobs:
111
tar cfz ${name}-oci-${arch}${SFX}.tar.gz ${name}-oci-${arch}${SFX}
112
done
113
ls -la *-oci*${SFX}/
114
- ls -l *.tar.gz
+ for file in *.tar.gz; do
115
+ sha256sum $file > $file.sha256
116
+ done
117
+ ls -l *.tar.gz*
118
+
119
- name: Log in to registry
120
run: |
121
echo "${{ secrets.token }}" | buildah login -u ${{ github.actor }} --password-stdin ghcr.io
@@ -135,7 +139,7 @@ jobs:
135
139
prerelease: true
136
140
tag: ${{ steps.vars.outputs.ver }}
137
141
token: ${{ secrets.GITHUB_TOKEN }}
138
- artifacts: "*.tar.gz"
142
+ artifacts: "*.tar.gz*"
143
- name: Summary
144
145
cat <<EOF >> $GITHUB_STEP_SUMMARY
0 commit comments