Skip to content

Commit 1dbf4c6

Browse files
committed
Use outputs not output
1 parent 0a4dcd7 commit 1dbf4c6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,15 @@ jobs:
8686
- name: Create GitHub Release
8787
uses: softprops/action-gh-release@v2
8888
with:
89-
files: dist/${{ steps.binary-name.output.binary }}
89+
files: dist/${{ steps.binary-name.outputs.binary }}
9090
env:
9191
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92-
BINARY_NAME: ${{ steps.binary-name.output.binary }}
9392

9493
- name: Publish package as artifact
9594
uses: actions/upload-artifact@v4
9695
with:
97-
name: ${{ steps.binary-name.output.binary }}
98-
path: dist/${{ steps.binary-name.output.binary }}
96+
name: ${{ steps.binary-name.outputs.binary }}
97+
path: dist/${{ steps.binary-name.outputs.binary }}
9998

10099
debian-publish:
101100
needs: debian-build

0 commit comments

Comments
 (0)