Publish Min #2
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: Publish Min | |
on: | |
workflow_dispatch: | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "true" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.0 | |
registry-url: https://registry.npmjs.org/ | |
- name: Code Generation | |
run: | | |
BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" | |
yarn | |
yarn bootstrap | |
yarn build | |
git checkout -b $BRANCH_NAME | |
cd packages/chain-registry | |
yarn codegen | |
yarn build | |
cd ../../ | |
cd packages/osmosis | |
yarn codegen | |
cd ../../ | |
cd packages/juno | |
yarn codegen | |
cd ../../ | |
- name: Git Ops | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor}}@users.noreply.github.com" | |
git add . | |
if ! git diff --staged --quiet; then | |
git commit -am "build 🛠 $BRANCH_NAME" | |
git push origin $BRANCH_NAME | |
else | |
echo "No changes to commit." | |
fi | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} | |
GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} |