diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml new file mode 100644 index 000000000..93711332f --- /dev/null +++ b/.github/workflows/publish-packages.yml @@ -0,0 +1,29 @@ +name: Publish @layerzerolabs packages + +on: + push: + branches: + - gx/main + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + release: + name: Release + if: github.repository == 'LayerZero-Labs/changesets' + runs-on: ubuntu-latest + timeout-minutes: 20 + steps: + - uses: actions/checkout@v4 + - uses: ./.github/actions/ci-setup + + - name: Create Release Pull Request or Publish to npm + # https://github.com/changesets/action + uses: changesets/action@v1 + with: + # this expects you to have a script called release which does a build for your packages and calls changeset publish + publish: yarn release-packages + version: yarn version-packages + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index 775a54a3f..11b4fb1b6 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,8 @@ "prettier": "prettier --write \"**/*.{js,ts,tsx,md}\"", "changeset": "packages/cli/bin.js", "check-all": "yarn test && yarn lint && yarn types:check", - "version-packages": "changeset version && yarn prettier", + "version-packages": "set && npm config list -l", + "release-packages": "set && echo '++++++++++' && yarn build && yarn workspace @changesets/cli pack && set && echo '---------' && npm config list -l && npm --no-workspaces publish packages/cli/changesets-cli-*.tgz", "release": "yarn build && changeset publish" }, "repository": {