Skip to content

Test Publish

Test Publish #5

Workflow file for this run

name: Test Publish
on:
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
cd packages/chain-registry
echo "test msg" > msg.txt
cd ../../
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)"
git checkout -b $BRANCH_NAME
git add .
if ! git diff --staged --quiet; then
git commit -am "build 🛠 $BRANCH_NAME"
git push origin $BRANCH_NAME
gh pr create --base main --head $BRANCH_NAME --title "Automatic build 🛠 $BRANCH_NAME" --body "This is an auto-generated PR with build changes $BRANCH_NAME"
else
echo "No changes to commit."
fi
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}