Skip to content

Commit

Permalink
ll
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde committed Aug 10, 2020
1 parent 52b8d61 commit 234dd52
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/Linux-Clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ jobs:

- name: 📦 Pack
working-directory: instdir
run: cmake -E tar cJfv ../artifact .
run: cmake -E tar cJfv ../${{env.ARTIFACT}} .


- name: Upload
uses: actions/upload-artifact@v1
with:
path: ./artifact
name: ${ARTIFACT}
path: ./${{env.ARTIFACT}}
name: ${{env.ARTIFACT}}

release:
if: contains(github.ref, 'tags/v')
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v1
with:
name: ${ARTIFACT}
name: ${{env.ARTIFACT}}
path: ./

- name: Download URL
Expand All @@ -188,6 +188,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.set_upload_url.outputs.upload_url }}
asset_path: ./${ARTIFACT}
asset_name: ${ARTIFACT}
asset_path: ./${{env.ARTIFACT}}
asset_name: ${{env.ARTIFACT}}
asset_content_type: application/x-gtar

0 comments on commit 234dd52

Please sign in to comment.