-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add cut-release and publish gh-actions
- Loading branch information
Showing
8 changed files
with
5,294 additions
and
2,288 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Cut Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
commit: | ||
description: 'Commit to be cut to final released, default to head' | ||
required: false | ||
default: "" | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
ref: ${{ github.event.inputs.commit }} | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
- name: Sync Release Branch | ||
run: | | ||
git remote set-url origin https://${{ secrets.ACCESS_TOKEN }}@github.com/sentioxyz/sentio-sdk | ||
git checkout -b release | ||
git log -1 | ||
git push -f --set-upstream origin release |
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Publish to npm | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release | ||
- v1 | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
ref: ${{ github.event.inputs.commit }} | ||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'pnpm' | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Set NPM variables | ||
id: npm | ||
run: | | ||
BRANCH=${GITHUB_REF##*/} | ||
DIST_TAG=rc | ||
if [[ $BRANCH == "release" ]]; then | ||
DIST_TAG=latest | ||
fi | ||
echo "dist_tag=${DIST_TAG}" >> $GITHUB_OUTPUT | ||
pnpm config list | ||
- name: Install | ||
run: pnpm install | ||
- name: Semantic Release | ||
id: semantic | ||
uses: cycjimmy/semantic-release-action@v4 | ||
with: | ||
semantic_version: 23.1.1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
- name: Release Summary | ||
if: steps.semantic.outputs.new_release_published == 'true' | ||
run: | | ||
echo "### New version v${{ steps.semantic.outputs.new_release_version }} cut" >> $GITHUB_STEP_SUMMARY | ||
echo "commit: ${GITHUB_SHA}, branch/tag: ${GITHUB_REF}" >> $GITHUB_STEP_SUMMARY | ||
echo "${{ steps.semantic.outputs.new_release_notes }}" >> $GITHUB_STEP_SUMMARY | ||
env: | ||
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
- name: NPM Publish | ||
if: steps.semantic.outputs.new_release_published == 'true' | ||
run: | | ||
./scripts/update-version.sh ${{ steps.semantic.outputs.new_release_version }} | ||
pnpm publish --no-git-checks --tag ${{ steps.npm.outputs.dist_tag }} | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
- name: report error | ||
if: steps.semantic.outputs.new_release_published == 'false' | ||
run: | | ||
echo "### No version cut" >> $GITHUB_STEP_SUMMARY | ||
echo "Check Semantic Release output for details" | ||
- name: Clean Github Release for RC | ||
if: ${{ contains(steps.semantic.outputs.new_release_version, '-rc.') == false }} | ||
run: ./scripts/clean-rc-releases.sh | ||
env: | ||
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} |
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
Oops, something went wrong.