-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: fix release name and patch version
- Loading branch information
1 parent
bd29be7
commit a34e39d
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
outputs: | ||
COMMIT_SHA: ${{ steps.declare_sha.outputs.COMMIT_SHA }} | ||
SEMVER_PATCH: ${{ steps.declare_sha.outputs.SEMVER }} | ||
FULLVERSION: ${{ steps.semver_parser.outputs.fullversion }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
@@ -41,7 +41,7 @@ jobs: | |
run: | | ||
SHA=$(git rev-parse --short HEAD) | ||
echo "COMMIT_SHA=$SHA" >> $GITHUB_OUTPUT | ||
echo "SEMVER_PATCH=${{ steps.semver_parser.outputs.patch }}.${{ steps.semver_parser.outputs.prerelease }}" >> $GITHUB_OUTPUT | ||
echo "SEMVER_PATCH=${{ steps.semver_parser.outputs.patch }}-${{ steps.semver_parser.outputs.prerelease }}" >> $GITHUB_OUTPUT | ||
- name: Setup latest ReAPI includes | ||
env: | ||
|
@@ -130,7 +130,7 @@ jobs: | |
|
||
- name: Packaging binaries | ||
id: packaging | ||
run: 7z a -mm=Deflate -mfb=258 -mpass=15 -r ReDeathmatch-${{ needs.build.outputs.SEMVER_PATCH }}.zip cstrike/ | ||
run: 7z a -mm=Deflate -mfb=258 -mpass=15 -r ReDeathmatch-${{ needs.build.outputs.FULLVERSION }}.zip cstrike/ | ||
|
||
- name: Publish artifacts | ||
uses: softprops/[email protected] | ||
|