File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,17 +58,17 @@ jobs:
58
58
run : |
59
59
git config --local user.email ${{ secrets.GH_DEPLOY_EMAIL }}
60
60
git config --local user.name ${{ secrets.GH_DEPLOY_NAME }}
61
- - name : Get last beta version from package.json
62
- id : version
63
- if : github.event.inputs.kind == 'mirror'
64
- run : echo "::set-output name=value::$(bun --silent release latest beta)"
65
61
- name : Reset the Beta Branch
66
62
if : github.event.inputs.kind == 'mirror' || github.event.inputs.is-cycle-start == 'true'
67
63
run : git reset --hard origin/main && git push origin beta -f
68
64
- uses : ./.github/actions/setup
69
65
with :
70
66
install : true
71
67
repo-token : ${{ secrets.GH_DEPLOY_TOKEN }}
68
+ - name : Get most recent beta version
69
+ id : version
70
+ if : github.event.inputs.kind == 'mirror'
71
+ run : echo "value=$(bun --silent release latest beta)" >> $GITHUB_OUTPUT
72
72
- name : Publish New Release
73
73
# For beta-cycle we always increment from the branch state
74
74
# For mirror we increment from the last beta version, unless it's start of a new cycle.
You can’t perform that action at this time.
0 commit comments