Skip to content

Commit

Permalink
ci: add workflow to publish all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed May 3, 2024
1 parent 3f60b46 commit ee8846c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-all-submodules-manual.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: workflow_dispatch
name: manual-release-submodule
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://external-dot-oss-automation.appspot.com/'
cache: 'pnpm'
- name: publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
pnpm install
pnpm publish -r --no-git-checks --access public

0 comments on commit ee8846c

Please sign in to comment.