Skip to content

Commit

Permalink
Publish snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
nitaliano committed Nov 21, 2024
1 parent f39b71f commit f517adc
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/release-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Release snapshot

on:
workflow_dispatch:
push:
branches:
- main
- snapshots

jobs:
publish-snapshot:
name: Publish snapshot release to npm
if: github.repository == 'ethereum-optimism/super-cli'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- uses: pnpm/action-setup@v2

- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
registry-url: https://registry.npmjs.org
cache: pnpm

- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt

- name: Set deployment token
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Verify NPM Token is valid
run: npm whoami
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish snapshots
uses: seek-oss/changesets-snapshot@v0
with:
pre-publish: pnpm nx run-many --target=build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit f517adc

Please sign in to comment.