-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix version of softprops/action-gh-release
Until this is fixed: softprops/action-gh-release#280 Signed-off-by: Patrick Avery <[email protected]>
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -214,7 +214,8 @@ jobs: | |
|
||
- name: Upload nightly | ||
if: github.event.schedule == '0 0 * * *' && github.repository == 'openchemistry/tomviz-superbuild' | ||
uses: softprops/action-gh-release@v1 | ||
# Fix version until this is fixed: https://github.com/softprops/action-gh-release/issues/280 | ||
uses: softprops/[email protected] | ||
with: | ||
name: Nightly for "${{ env.NIGHTLY_DATE }}" | ||
tag_name: "Nightly_${{ env.NIGHTLY_DATE }}" | ||
|
@@ -236,7 +237,8 @@ jobs: | |
|
||
- name: Upload latest nightly | ||
if: github.event.schedule == '0 0 * * *' && github.repository == 'openchemistry/tomviz-superbuild' | ||
uses: softprops/action-gh-release@v1 | ||
# Fix version until this is fixed: https://github.com/softprops/action-gh-release/issues/280 | ||
uses: softprops/[email protected] | ||
with: | ||
name: Latest | ||
body: Nightly for "${{ env.NIGHTLY_DATE }}" | ||
|