Skip to content

Commit

Permalink
fix artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
NikLeberg committed Nov 10, 2020
1 parent 5911b32 commit 3a4f616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
# tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
Expand All @@ -82,6 +82,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ${{runner.workspace}}/build/${{ matrix.config.artifact }}
asset_path: ${{runner.workspace}}/build/src/${{ matrix.config.artifact }}
asset_name: ${{ matrix.config.os }}-${{ matrix.config.artifact }}
asset_content_type: application/octet-stream

0 comments on commit 3a4f616

Please sign in to comment.