-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove logs for testing and revert back to checking out develop
Co-authored-by: Mukul Mishra <[email protected]> Co-authored-by: Giuseppe Samela <[email protected]>
- Loading branch information
1 parent
eb9c76a
commit 31c6e94
Showing
2 changed files
with
27 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
ssh-key: ${{ secrets.RELEASE_DEPLOY_KEY }} | ||
ref: feature/PW-21834/improve-vst-tracking | ||
ref: develop | ||
|
||
- name: Set up node.js | ||
uses: actions/[email protected] | ||
|
@@ -55,28 +55,28 @@ jobs: | |
const { defineReleaseVersion } = require('./.github/scripts/defineVersion.js') | ||
return defineReleaseVersion({core}, "${{ steps.read-latest-release-version.outputs.latestReleaseVersion }}", './CHANGELOG.md', ${{ inputs.is-major-release }}) | ||
# - name: Bump package.json and Changelog version | ||
# run: | | ||
# npm --no-git-tag-version version "${{ fromJson(steps.define-release-version.outputs.result) }}" | ||
# npx kacl release | ||
# | ||
# - name: Add tag and push changes | ||
# run: | | ||
# git config --global user.name 'Automated Release' | ||
# git config --global user.email '[email protected]' | ||
# git add . | ||
# git commit -m "Bump version and update changelog" | ||
# git tag -a "${{ fromJson(steps.define-release-version.outputs.result) }}" -m "v${{ fromJson(steps.define-release-version.outputs.result) }}" | ||
# git push origin develop | ||
# git push origin --tags | ||
# | ||
# - name: build and publish | ||
# run: | | ||
# echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > ~/.npmrc | ||
# npm publish | ||
# | ||
# - name: Create GitHub release | ||
# uses: softprops/action-gh-release@v2 | ||
# with: | ||
# generate_release_notes: true | ||
# tag_name: ${{ fromJson(steps.define-release-version.outputs.result) }} | ||
- name: Bump package.json and Changelog version | ||
run: | | ||
npm --no-git-tag-version version "${{ fromJson(steps.define-release-version.outputs.result) }}" | ||
npx kacl release | ||
- name: Add tag and push changes | ||
run: | | ||
git config --global user.name 'Automated Release' | ||
git config --global user.email '[email protected]' | ||
git add . | ||
git commit -m "Bump version and update changelog" | ||
git tag -a "${{ fromJson(steps.define-release-version.outputs.result) }}" -m "v${{ fromJson(steps.define-release-version.outputs.result) }}" | ||
git push origin develop | ||
git push origin --tags | ||
- name: build and publish | ||
run: | | ||
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > ~/.npmrc | ||
npm publish | ||
- name: Create GitHub release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
generate_release_notes: true | ||
tag_name: ${{ fromJson(steps.define-release-version.outputs.result) }} |