removed Latn data (which is already in tbk_Latn) from tbk, which is T… #430
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: Flatten SLDR and publish master to staging | |
on: | |
push: | |
paths: | |
- .github/workflows/** | |
- sldr/** | |
branches: [ master, feat/*, fix/* ] | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
# Deploy built artefacts to the secrets.UPLOAD_TARGET | |
deploy: | |
needs: build | |
if: github.event_name == 'push' || github.event.pull_request.merged == true | |
uses: ./.github/workflows/deploy.yml | |
with: | |
stage-to: sldr-staging | |
artifact-id: ${{ needs.build.outputs.artifact-id }} | |
secrets: | |
uploader-key: ${{ secrets.UPLOADER_SSH_KEY }} | |
server-address: ${{ secrets.UPLOAD_TARGET }} | |
repository-dispatch-pat: ${{ secrets.REPO_DISPATCH_TOKEN }} |