Update cosmos favicon ico #292
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 (testnet-dev) | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [closed] | |
| push: | |
| branches: [main] | |
| repository_dispatch: | |
| types: [deploy-testnet-dev] | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: checkout | |
| name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: testnet-dev | |
| - id: configure | |
| name: configure | |
| run: git config pull.ff true | |
| - id: pull-main | |
| name: Pull latest 'main' | |
| run: git pull --ff-only origin main | |
| - id: diff-check | |
| name: Check if 'testnet-dev' is behind 'main' | |
| run: git diff --exit-code origin/main | |
| - id: fast-forward | |
| name: Fast forward 'main' → 'testnet-dev' | |
| run: git merge --ff-only origin/main | |
| - id: push-testnet-dev | |
| name: Push latest 'testnet-dev' | |
| run: git push --set-upstream origin testnet-dev |