-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Updated deprecated actions (#983)
* [CI] Updated deprecated actions * [FIX] Update action zip upload * [FIX] Fix yaml syntax
- Loading branch information
Showing
3 changed files
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ jobs: | |
|
||
- name: Get release | ||
id: get_release | ||
uses: bruceadams/get-release@v1.2.0 | ||
uses: bruceadams/get-release@v1.3.2 | ||
|
||
|
||
- name: Pre-requisites | ||
|
@@ -186,12 +186,9 @@ jobs: | |
echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV | ||
- name: Upload .zip installer | ||
uses: actions/[email protected] | ||
uses: softprops/[email protected] | ||
with: | ||
upload_url: ${{ steps.get_release.outputs.upload_url }} | ||
asset_path: _build/${{env.ZIP_NAME}} | ||
asset_name: ${{env.ZIP_NAME}} | ||
asset_content_type: application/octet-stream | ||
files: _build/${{env.ZIP_NAME}} | ||
|
||
- name: Remove zip to free some disk space | ||
shell: bash | ||
|
@@ -215,9 +212,7 @@ jobs: | |
path: _build/_CPack_Packages/win64/NSIS/NSISOutput.log | ||
|
||
- name: Upload NSIS installer | ||
uses: actions/[email protected] | ||
uses: softprops/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
upload_url: ${{ steps.get_release.outputs.upload_url }} | ||
asset_path: _build/${{env.NSIS_NAME}} | ||
asset_name: ${{env.NSIS_NAME}} | ||
asset_content_type: application/octet-stream | ||
files: _build/${{env.NSIS_NAME}} |