Bump chain-registry from 2.0.195 to 2.0.202 #838
Workflow file for this run
This file contains hidden or 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: Deploy (dev) | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [closed] | |
| push: | |
| branches: [main] | |
| repository_dispatch: | |
| types: [deploy-dev] | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| permissions: | |
| id-token: write | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: checkout | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| fetch-depth: 0 | |
| - id: configure | |
| name: Configure git | |
| run: | | |
| git config user.name "GitHub Actions" | |
| git config user.email "[email protected]" | |
| - id: sync-dev | |
| name: Sync 'main' → 'dev' | |
| run: | | |
| git fetch origin dev:dev || git branch dev | |
| git checkout dev | |
| git reset --hard origin/main | |
| git push --force origin dev |