chore: upstream sync workflow #1
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: Build & Publish JS Bindings | |
on: | |
push: | |
branches: | |
- main | |
release: | |
types: [published] | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
# SHA is added to the end if on `main` to let all main workflows run | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ (github.ref == 'refs/heads/main') && github.sha || '' }} | |
cancel-in-progress: true | |
jobs: | |
js_bindings: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set Env | |
uses: Chia-Network/actions/setjobenv@main | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Install emsdk | |
uses: mymindstorm/setup-emsdk@v14 | |
- name: Get the version | |
id: version_info | |
run: echo "SOURCE_TAG=${GITHUB_REF#refs/tags/}" >>$GITHUB_OUTPUT | |
- name: Update version in package.json | |
if: startsWith(github.ref, 'refs/tags/') | |
working-directory: ${{ github.workspace }}/js-bindings | |
env: | |
SOURCE_TAG: ${{ steps.version_info.outputs.SOURCE_TAG }} | |
run: | | |
jq --arg VER "$SOURCE_TAG" '.version=$VER' package.json > temp.json && mv temp.json package.json | |
- name: Build JS | |
run: ./js_build.sh | |
- name: Publish | |
if: env.FULL_RELEASE == 'true' | |
working-directory: ${{ github.workspace }}/js_build/js-bindings | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc | |
npm publish --access public | |
- name: Cleanup | |
if: always() | |
run: | |
rm ${{ github.workspace }}/js_build/js-bindings/.npmrc || true |