Skip to content

Commit

Permalink
resolved path mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
maarteNNNN committed Feb 4, 2021
1 parent a07ff24 commit 4ef9ba0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ 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: ./dist_electron/release-${{ steps.get_version.outputs.VERSION }}-snap.zip
asset_path: ./release-${{ steps.get_version.outputs.VERSION }}-snap.zip
asset_name: release-${{ steps.get_version.outputs.VERSION }}-snap.zip
asset_content_type: application/zip

Expand All @@ -84,7 +84,7 @@ 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: ./dist_electron/release-${{ steps.get_version.outputs.VERSION }}-appimage.zip
asset_path: ./release-${{ steps.get_version.outputs.VERSION }}-appimage.zip
asset_name: release-${{ steps.get_version.outputs.VERSION }}-appimage.zip
asset_content_type: application/zip

Expand All @@ -95,7 +95,7 @@ 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: ./dist_electron/release-${{ steps.get_version.outputs.VERSION }}-deb.zip
asset_path: ./release-${{ steps.get_version.outputs.VERSION }}-deb.zip
asset_name: release-${{ steps.get_version.outputs.VERSION }}-deb.zip
asset_content_type: application/zip

Expand All @@ -106,6 +106,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: ./dist_electron/release-${{ steps.get_version.outputs.VERSION }}-windows.zip
asset_path: ./release-${{ steps.get_version.outputs.VERSION }}-windows.zip
asset_name: release-${{ steps.get_version.outputs.VERSION }}-windows.zip
asset_content_type: application/zip

0 comments on commit 4ef9ba0

Please sign in to comment.