feat(projects): USFM upload and validation on a new Import tab (#455) #198
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
| # Deploys to the development Static Web App after every merge to main. | |
| # | |
| # Tags are deliberately NOT a trigger here. Release deploys (QA, then prod) | |
| # are chained inside `cut-release.yml` so prod provably ships the tag QA | |
| # tested; a tag trigger on this file would deploy QA a second time. | |
| name: Post-merge Deploy | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy-dev: | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/deploy.yml | |
| secrets: inherit | |
| with: | |
| ref: ${{ github.sha }} | |
| environment: development | |
| vite_environment: development | |
| app_version: ${{ format('dev-{0}', github.sha) }} | |
| rte_pericope: true |