diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 4f54ee8a..a535f810 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,22 +1,27 @@ name: publish -on: - push: - branches: main +on: pull_request +# on: +# push: +# tags: +# - clients/js/[0-9].[0-9]+.[0-9]+ +# - contracts/[0-9].[0-9]+.[0-9]+ +# - integrations/hardhat/[0-9].[0-9]+.[0-9]+ jobs: publish: runs-on: ubuntu-latest - strategy: - matrix: - package: [clients/js, integrations/hardhat, contracts] steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: "18" - - name: Publish ${{ matrix.package }} to NPM + - name: Extract package from tag + id: extract-tag + run: echo "NPM_PACKAGE=$(echo 'integrations/hardhat/1.2.1' | grep -oE '(clients/js|contracts|integrations/hardhat)')" >> $GITHUB_OUTPUT + - name: Publish ${{ github.ref_name }} to NPM uses: JS-DevTools/npm-publish@v2 with: token: ${{ secrets.NPM_TOKEN }} - package: ${{ matrix.package }} + dry-run: true + package: ${{ steps.extract-tag.outputs.NPM_PACKAGE }}