Skip to content

Commit 9d9a356

Browse files
committed
fixup: remove extra v
1 parent 88de49f commit 9d9a356

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/docker.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
username: ${{ secrets.DOCKER_USERNAME }}
3636
password: ${{ secrets.DOCKER_PASSWORD }}
3737

38-
- name: Get version branch
39-
id: version-branch
40-
run: echo "::set-output name=name::v$(jq .version package.json)"
38+
- name: Get version
39+
id: version
40+
run: echo "::set-output name=version::$(jq .version package.json)"
4141

4242
- name: Download artifact
4343
uses: dawidd6/action-download-artifact@v2
4444
id: download
4545
with:
46-
branch: v${{ steps.version-branch.outputs.name }}
46+
branch: v${{ steps.version.outputs.version }}
4747
workflow_conclusion: completed
4848
name: "release-packages"
4949
path: release-packages

.github/workflows/npm-brew.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v3
2525

26-
- name: Get version branch
27-
id: version-branch
28-
run: echo "::set-output name=name::v$(jq .version package.json)"
26+
- name: Get version
27+
id: version
28+
run: echo "::set-output name=version::$(jq .version package.json)"
2929

3030
- name: Download artifact
3131
uses: dawidd6/action-download-artifact@v2
3232
id: download
3333
with:
34-
branch: v${{ steps.version-branch.outputs.name }}
34+
branch: v${{ steps.version.outputs.version }}
3535
workflow_conclusion: completed
3636
name: "npm-package"
3737
path: release-npm-package

0 commit comments

Comments
 (0)