bump versions for release (#2131) #1107
This file contains hidden or 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: Zombienet NPM Automated Release | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| publish: | |
| name: Build & Publish to NPM | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: npm install | |
| working-directory: "./javascript" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18.x" | |
| - name: Build NPM Package | |
| run: npm run build | |
| working-directory: "./javascript" | |
| # Pack and upload each package only if version is changed | |
| - name: Pack Utils | |
| run: npm pack | |
| working-directory: "./javascript/packages/utils" | |
| - name: Pack orchestrator | |
| run: npm pack | |
| working-directory: "./javascript/packages/orchestrator" | |
| - name: Pack CLI | |
| run: npm pack | |
| working-directory: "./javascript/packages/cli" | |
| - name: move_to | |
| run: | | |
| mkdir -p packs | |
| cp ./javascript/packages/utils/*.tgz packs/ | |
| cp ./javascript/packages/orchestrator/*.tgz packs/ | |
| cp ./javascript/packages/cli/*.tgz packs/ | |
| ls -ltr packs | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: packages-${{ github.sha }} | |
| path: packs | |
| - name: NPM Publish automation | |
| uses: octokit/request-action@v2.x | |
| with: | |
| route: POST /repos/paritytech/npm_publish_automation/actions/workflows/publish.yml/dispatches | |
| ref: main | |
| inputs: '${{ format(''{{ "repo": "{0}", "run_id": "{1}" }}'', github.repository, github.run_id) }}' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.NPM_PUBLISH_AUTOMATION_TOKEN }} |