Skip to content

Commit

Permalink
chore: workflow to publish packages for this repository
Browse files Browse the repository at this point in the history
  • Loading branch information
zouguangxian committed Jun 15, 2024
1 parent 2c7a500 commit 3813fc5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish-packages.yml
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 }}

0 comments on commit 3813fc5

Please sign in to comment.