🔵 Add Base chain (#131) #53
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: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
- name: Setup Node.js 16.x | |
uses: actions/setup-node@master | |
with: | |
node-version: 16.x | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7.1.9 | |
run_install: false | |
- name: Install Dependencies | |
run: pnpm i | |
- name: Set git user | |
run: | | |
git config user.name truefibot | |
git config user.email [email protected] | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
# This expects you to have a script called release which does a build for your packages and calls changeset publish | |
publish: pnpm run release | |
commit: "🎉 Release new version" | |
title: "🎉 Release new version" | |
setupGitUser: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Publish dev version to npm | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
pnpm -r --filter "ethereum-mars" exec ${PWD}/scripts/dev-version.sh | |
pnpm run build | |
pnpm -r publish --no-git-checks |