Chore/ver bump apsara (#792) #167
Workflow file for this run
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
name: js-sdk | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
workflow_dispatch: | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: ./sdks/js | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: main | |
- name: Setup pnpm 8 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.9 | |
- name: Setup Node.js 20.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- name: Install Dependencies 🔧 | |
run: pnpm i | |
- name: Build Step 🔧 | |
env: | |
CI: "" | |
run: npm run ci:build | |
- name: Create .npmrc | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
working-directory: ./sdks/js/packages/core | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Bump Package Version | |
run: npm run bump-version | |
working-directory: ./sdks/js/packages/core | |
env: | |
GIT_REFNAME: ${{ github.ref_name }} | |
- name: Run Semantic Release 🚀 | |
run: npm run release:ci | |
working-directory: ./sdks/js/packages/core | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |