forked from changesets/changesets
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: workflow to publish packages for this repository
- Loading branch information
1 parent
2c7a500
commit fd95a69
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
version: yarn version-packages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
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