File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 64
64
echo "Setting user input params: VERSION=${{github.event.inputs.version}}, WORKSPACE=${{github.event.inputs.workspace}}"
65
65
fi
66
66
67
+
68
+ - name: Bump Version (no tag)
69
+ if: github.event.inputs.workspace != '@segment/analytics-react-native'
70
+ run: yarn workspace ${{ env.WORKSPACE }} version --${{ env.VERSION }} --no-git-tag-version
71
+
72
+ - name: Bump Version (tag)
73
+ if: github.event.inputs.workspace == '@segment/analytics-react-native'
74
+ run: yarn workspace ${{ env.WORKSPACE }} version --${{ env.VERSION }}
67
75
68
76
- name: Create Pull Request to Merge to
69
77
uses: peter-evans/create-pull-request@v3
Original file line number Diff line number Diff line change 38
38
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
39
39
40
40
- name: Publish
41
+ working-directory: packages/core
41
42
run: npm publish --tag beta --dry-run
42
43
43
44
create-github-release:
You can’t perform that action at this time.
0 commit comments