Skip to content

🐛 fix(config): Copy pasta (#599) #103

🐛 fix(config): Copy pasta (#599)

🐛 fix(config): Copy pasta (#599) #103

Workflow file for this run

name: Snapshot 🚀
on:
workflow_dispatch:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
prerelease:
name: Changests Snapshot
if: github.repository == 'evmts/evmts-monorepo'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout Repo
with:
fetch-depth: 0
submodules: recursive
- name: "Setup"
uses: ./.github/actions/setup
- name: Build
run: bun run build
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
- name: Set deployment token
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish snapshots
uses: seek-oss/changesets-snapshot@v0
with:
pre-publish: bun nx run-many --targets=build,build:dist --skip-nx-cache
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}