We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27eabc8 commit 85d06c4Copy full SHA for 85d06c4
2 files changed
.github/workflows/publish.yml
@@ -6,9 +6,7 @@ on:
6
- "*"
7
8
permissions:
9
- contents: "read"
10
- # Needed to access the workflow's OIDC identity.
11
- id-token: "write"
+ contents: read
12
13
jobs:
14
@@ -42,7 +40,7 @@ jobs:
42
40
- name: "Generate hashes"
43
41
id: hash
44
run: |
45
- cd dist && echo "::set-output name=hashes::$(sha256sum * | base64 -w0)"
+ cd dist && echo "hashes=$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT
46
47
- name: "Upload dists"
48
uses: "actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb"
newsfragments/20230422_143342_sethmichaellarson.md
@@ -0,0 +1,3 @@
1
+### Changed
2
+
3
+- Changed the `build.outputs.hashes` state to use `$GITHUB_OUTPUT` instead of deprecated `::set-output` method.
0 commit comments