Skip to content

Commit

Permalink
Fix UI version in release workflow build
Browse files Browse the repository at this point in the history
  • Loading branch information
stefannica committed Oct 2, 2022
1 parent 8e892a1 commit 3ad71ec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Get the version from the github tag ref
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- uses: actions/setup-node@v3
with:
node-version: 14.20.0
Expand All @@ -25,7 +28,7 @@ jobs:
env:
REACT_APP_BASE_API_URL: "/api/v1"
REACT_APP_MOCKAPI_RESPONSE: false
REACT_APP_VERSION: ${{ github.ref }}
REACT_APP_VERSION: ${{ steps.get_version.outputs.VERSION }}
- name: Generate Changelog
uses: heinrichreimer/[email protected]
with:
Expand Down

0 comments on commit 3ad71ec

Please sign in to comment.