We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
emberjs
Learn more about funding links in repositories.
Report abuse
1 parent 1c1544b commit 27c1d74Copy full SHA for 27c1d74
.github/workflows/release_publish-beta.yml
@@ -64,6 +64,9 @@ jobs:
64
id: version
65
with:
66
cmd: 'jq .version package.json -r'
67
+ - name: Last Beta Version
68
+ if: github.event.inputs.kind == 'mirror'
69
+ run: echo "Last Beta Version: ${{ steps.version.outputs.value }}"
70
- name: Reset the Beta Branch
71
if: github.event.inputs.kind == 'mirror' || github.event.inputs.is-cycle-start == 'true'
72
run: git reset --hard origin/main && git push origin beta -f
@@ -82,7 +85,7 @@ jobs:
82
85
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
83
86
- name: Publish New Mirror Release
84
87
if: github.event.inputs.kind == 'mirror'
- run: bun release exec publish beta --from=${{ steps.version.outputs.stdout }}
88
+ run: bun release exec publish beta --from=${{ steps.version.outputs.value }}
89
env:
90
FORCE_COLOR: 2
91
CI: true
0 commit comments