Skip to content

✨ Feat: Add support for arbitrum blocks (#1421) #706

✨ Feat: Add support for arbitrum blocks (#1421)

✨ Feat: Add support for arbitrum blocks (#1421) #706

Workflow file for this run

name: Prerelease 🚀
on:
push:
branches:
# Target main branch
- "main"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
prerelease:
name: Changests Prerelease
if: github.repository == 'evmts/tevm-monorepo'
runs-on: ubuntu-latest
# Permissions necessary for Changesets to push a new branch and open PRs
# (for automated Version Packages PRs), and request the JWT for provenance.
# More info: https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#adding-permissions-settings
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v4
name: Checkout Repo
with:
submodules: recursive
- 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: Check for pre.json file existence
id: check_files
uses: andstor/[email protected]
with:
files: ".changeset/pre.json"
- name: Enter next prerelease mode
# If .changeset/pre.json does not exist and we did not recently exit
# prerelease mode, enter prerelease mode with tag next
if: steps.check_files.outputs.files_exists == 'false' && !contains(github.event.head_commit.message, 'Exit prerelease')
run: npx changeset pre enter next
- name: Create next version PR or publish 🚀
uses: changesets/action@v1
with:
version: bun run release:version
publish: bun run release:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}