Skip to content

Commit

Permalink
Action change 15
Browse files Browse the repository at this point in the history
  • Loading branch information
Metalit committed Apr 8, 2024
1 parent a4195d5 commit f40a2f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/qmod-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,19 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ${{ steps.libname.outputs.NAME }}
path: ${GITHUB_WORKSPACE}/qmod/build/${{ steps.libname.outputs.NAME }}
path: ${{ github.workspace }}/qmod/build/${{ steps.libname.outputs.NAME }}
if-no-files-found: error

- name: Upload debug artifact
uses: actions/upload-artifact@v2
with:
name: debug_${{ steps.libname.outputs.NAME }}
path: ${GITHUB_WORKSPACE}/qmod/build/debug/debug_${{ steps.libname.outputs.NAME }}
path: ${{ github.workspace }}/qmod/build/debug/debug_${{ steps.libname.outputs.NAME }}
if-no-files-found: error

- name: Upload qmod artifact
uses: actions/upload-artifact@v2
with:
name: ${{ env.qmodName }}.qmod
path: ${GITHUB_WORKSPACE}/qmod/${{ env.qmodName }}.qmod
path: ${{ github.workspace }}/qmod/${{ env.qmodName }}.qmod
if-no-files-found: error

0 comments on commit f40a2f4

Please sign in to comment.