Skip to content

Commit 35334b0

Browse files
authored
Fix version
1 parent ee0b4f0 commit 35334b0

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/actions/azdo-build/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ runs:
223223
224224
tar \
225225
--extract \
226-
--file=../tgzfiles/botframework-webchat-${{ steps.azdo-build.outputs.version }}.tgz \
226+
--file=../tgzfiles/botframework-webchat-${{ steps.get-version.outputs.version }}.tgz \
227227
--strip-component=1 \
228228
package/dist/ \
229229
package/static/
@@ -236,7 +236,7 @@ runs:
236236
237237
tar \
238238
--extract \
239-
--file=../tgzfiles/botframework-webchat-fluent-theme-${{ steps.azdo-build.outputs.version }}.tgz \
239+
--file=../tgzfiles/botframework-webchat-fluent-theme-${{ steps.get-version.outputs.version }}.tgz \
240240
--strip-component=1 \
241241
package/dist/ \
242242
package/static/

.github/workflows/create-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ jobs:
121121
122122
- id: azdo-build
123123
if: '!inputs.local-build'
124+
name: Build (Azure DevOps)
124125
timeout-minutes: 45
125126
uses: ./.github/actions/azdo-build
126127
with:
@@ -136,9 +137,11 @@ jobs:
136137
137138
- id: local-build
138139
if: inputs.local-build
140+
name: Build (local)
139141
uses: ./.github/actions/local-build
140142

141143
- id: get-version
144+
name: Get version
142145
run: |
143146
echo version=${{ case(inputs.local-build, steps.local-build.outputs.version, steps.azdo-build.outputs.version) }} | tee --append $GITHUB_OUTPUT
144147
echo version-type=${{ case(inputs.local-build, steps.local-build.outputs.version-type, steps.azdo-build.outputs.version-type) }} | tee --append $GITHUB_OUTPUT

0 commit comments

Comments
 (0)