Skip to content

Commit

Permalink
Removed versioning from release.sh, for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
breki authored Nov 24, 2019
1 parent a54c00c commit 5da7e9b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
dotnet-version: 3.0.100
- name: Build and run tests
run: bash --noprofile --norc -eo pipefail release.sh 1.2.3.4
run: bash --noprofile --norc -eo pipefail release.sh
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -35,24 +35,24 @@ 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: ./builds/Demeton-win10-x64-${{ env.VERSION }}.zip
asset_name: Demeton-win10-x64-${{ env.VERSION }}.zip
asset_path: ./builds/Demeton-win10-x64.zip
asset_name: Demeton-win10-x64.zip
asset_content_type: application/zip
- name: Upload win10-x64-full package
uses: actions/upload-release-asset@v1.0.1
env:
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: ./builds/Demeton-win10-x64-full-${{ env.VERSION }}.zip
asset_name: Demeton-win10-x64-full-${{ env.VERSION }}.zip
asset_path: ./builds/Demeton-win10-x64-full.zip
asset_name: Demeton-win10-x64-full.zip
asset_content_type: application/zip
- name: Upload linux-x64-full package
uses: actions/upload-release-asset@v1.0.1
env:
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: ./builds/Demeton-linux-x64-full-${{ env.VERSION }}.zip
asset_name: Demeton-linux-x64-full-${{ env.VERSION }}.zip
asset_path: ./builds/Demeton-linux-x64-full.zip
asset_name: Demeton-linux-x64-full.zip
asset_content_type: application/zip

0 comments on commit 5da7e9b

Please sign in to comment.