-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from spectrocloud/fips-static-link-fix-main
Fips changes for Static Linking
- Loading branch information
Showing
2 changed files
with
17 additions
and
6 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 |
---|---|---|
|
@@ -20,11 +20,11 @@ jobs: | |
uses: mukunku/[email protected] | ||
id: checkTag | ||
with: | ||
tag: spectro-v${{ github.event.inputs.release_version }} | ||
tag: v${{ github.event.inputs.release_version }}-spectro | ||
- | ||
if: ${{ steps.checkTag.outputs.exists == 'true' }} | ||
run: | | ||
echo "Tag already exists for spectro-v${{ github.event.inputs.release_version }}..." | ||
echo "Tag already exists for v${{ github.event.inputs.release_version }}-spectro..." | ||
exit 1 | ||
- | ||
uses: actions/checkout@v3 | ||
|
@@ -60,9 +60,9 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: spectro-v${{ github.event.inputs.release_version }} | ||
release_name: Release spectro-v${{ github.event.inputs.release_version }} | ||
tag_name: v${{ github.event.inputs.release_version }}-spectro | ||
release_name: Release v${{ github.event.inputs.release_version }}-spectro | ||
body: | | ||
Release version ${{ github.event.inputs.release_version }} | ||
Release version v${{ github.event.inputs.release_version }}-spectro | ||
draft: false | ||
prerelease: false |
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