Skip to content

Commit

Permalink
Release the version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Jul 17, 2024
1 parent e939513 commit d7e1f0a
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build
env:
VERSION_SEMVER: ${{ steps.vars.outputs.tag }}
VERSION_SEMVER: ${{steps.get_version.outputs.VERSION }}
run: bash package-linux_x64.sh
- name: Upload math result for job Linux
uses: actions/upload-artifact@v3
Expand All @@ -29,9 +32,12 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1
- uses: microsoft/[email protected]
- uses: milliewalky/setup-7-zip@v1
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build
env:
VERSION_SEMVER: ${{ steps.vars.outputs.tag }}
VERSION_SEMVER: ${{steps.get_version.outputs.VERSION }}
run: bash package-windows_x86_64.sh
- name: Upload math result for job Windows
uses: actions/upload-artifact@v3
Expand All @@ -43,9 +49,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build
env:
VERSION_SEMVER: ${{ steps.vars.outputs.tag }}
VERSION_SEMVER: ${{steps.get_version.outputs.VERSION }}
run: bash package-macos.sh
- name: Upload math result for job Mac
uses: actions/upload-artifact@v3
Expand All @@ -57,9 +66,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build
env:
VERSION_SEMVER: ${{ steps.vars.outputs.tag }}
VERSION_SEMVER: ${{steps.get_version.outputs.VERSION }}
run: bash package-macos.sh
- name: Upload math result for job Mac
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit d7e1f0a

Please sign in to comment.