Merge pull request #2336 from blockscout/fe-2335 #553
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: Deploy from main branch | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.husky/**' | |
- '.vscode/**' | |
- 'docs/**' | |
- 'jest/**' | |
- 'mocks/**' | |
- 'playwright/**' | |
- 'stubs/**' | |
- 'tools/**' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
publish_image: | |
name: Publish Docker image | |
uses: './.github/workflows/publish-image.yml' | |
secrets: inherit |