Merge pull request #1 from rabbitholegg/sam/boost-4067-scaffold-initi… #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | ||
on: | ||
push: | ||
branches: [main] | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
verify: | ||
name: Verify | ||
uses: ./.github/workflows/verify.yml | ||
Check failure on line 13 in .github/workflows/on-push-to-main.yml GitHub Actions / MainInvalid workflow file
|
||
secrets: inherit | ||
changesets: | ||
name: Changesets | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- name: Install dependencies | ||
uses: ./.github/actions/install-dependencies | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create Version Pull Request | ||
uses: changesets/action@v1 | ||
with: | ||
version: pnpm changeset:version | ||
commit: "chore: version package" | ||
title: "chore: version package" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
release: | ||
name: Release | ||
needs: verify | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Install dependencies | ||
uses: ./.github/actions/install-dependencies | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create .npmrc | ||
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | ||
- name: Publish to NPM | ||
uses: changesets/action@v1 | ||
with: | ||
publish: pnpm publish-packages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN }} | ||
# TODO: do we want this? | ||
# docs: | ||
# needs: check | ||
# name: Deploy Docs | ||
# runs-on: ubuntu-latest | ||
# permissions: | ||
# contents: write | ||
# pages: write | ||
# id-token: write | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# with: | ||
# submodules: recursive | ||
# - name: Install Foundry | ||
# uses: foundry-rs/foundry-toolchain@v1 | ||
# with: | ||
# version: nightly | ||
# - name: Build Documentation (mdBook) | ||
# working-directory: ./packages/evm | ||
# run: forge doc --build | ||
# - name: Publish Documentation | ||
# uses: JamesIves/github-pages-deploy-action@v4 | ||
# with: | ||
# folder: ./packages/evm/docs/book | ||
# token: ${{ secrets.GITHUB_TOKEN }} |