We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfa0adb commit d0e6a72Copy full SHA for d0e6a72
.github/workflows/pythonpublish.yml
@@ -29,10 +29,9 @@ jobs:
29
30
- name: Generate SHA256 checksums
31
run: |
32
- cd dist
33
- sha256sum * > SHA256SUMS
+ cd dist && sha256sum * > ../SHA256SUMS
34
echo "### SHA256 Checksums"
35
- cat SHA256SUMS
+ cat ../SHA256SUMS
36
37
- name: "Upload dists"
38
uses: "actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f" # v7.0.0
@@ -42,6 +41,14 @@ jobs:
42
41
if-no-files-found: error
43
retention-days: 5
44
+ - name: "Upload SHA256SUMS"
45
+ uses: "actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f" # v7.0.0
46
+ with:
47
+ name: "SHA256SUMS"
48
+ path: "SHA256SUMS"
49
+ if-no-files-found: error
50
+ retention-days: 5
51
+
52
publish:
53
runs-on: ubuntu-latest
54
needs: build
0 commit comments