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 0a4dcd7 commit 1dbf4c6Copy full SHA for 1dbf4c6
.github/workflows/publish.yml
@@ -86,16 +86,15 @@ jobs:
86
- name: Create GitHub Release
87
uses: softprops/action-gh-release@v2
88
with:
89
- files: dist/${{ steps.binary-name.output.binary }}
+ files: dist/${{ steps.binary-name.outputs.binary }}
90
env:
91
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92
- BINARY_NAME: ${{ steps.binary-name.output.binary }}
93
94
- name: Publish package as artifact
95
uses: actions/upload-artifact@v4
96
97
- name: ${{ steps.binary-name.output.binary }}
98
- path: dist/${{ steps.binary-name.output.binary }}
+ name: ${{ steps.binary-name.outputs.binary }}
+ path: dist/${{ steps.binary-name.outputs.binary }}
99
100
debian-publish:
101
needs: debian-build
0 commit comments