Skip to content

feat(supersim): bump to version 0.1.0-alpha.26 (#568) #151

feat(supersim): bump to version 0.1.0-alpha.26 (#568)

feat(supersim): bump to version 0.1.0-alpha.26 (#568) #151

name: Release snapshot
# Releases a snapshot release when new commits merge to main
# This ensures the release process is working as expected as well as always gives us a release
on:
workflow_dispatch:
push:
branches:
- main
jobs:
publish-snapshot:
name: Publish snapshot release to npm
if: github.repository == 'ethereum-optimism/ecosystem'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Setup
uses: ./.github/actions/setup
- 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 --skip-nx-cache
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}