We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e2287f commit 5f81023Copy full SHA for 5f81023
.github/workflows/build-and-release-dajet-linux.yml
@@ -84,12 +84,12 @@ jobs:
84
85
- name: Prepare artifacts
86
working-directory: dajet-studio
87
- run: tar czvf "dajet-studio-${{github.event.inputs.version}}-linux.tar.gz" "."
+ run: tar czvf "${{github.workspace}}/dajet-studio-${{github.event.inputs.version}}-linux.tar.gz" "."
88
89
- name: Upload artifacts
90
uses: softprops/action-gh-release@v2
91
with:
92
tag_name: 'dajet-${{github.event.inputs.version}}'
93
- files: ${{github.workspace}}/dajet-studio/dajet-studio-${{github.event.inputs.version}}-linux.tar.gz
+ files: ${{github.workspace}}/dajet-studio-${{github.event.inputs.version}}-linux.tar.gz
94
env:
95
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments