Remove en_US_POSIX to comply with langtags #372
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 to staging | |
on: | |
push: | |
paths: | |
- .github/workflows/** | |
- sldr/** | |
branches: [ master ] | |
pull_request: | |
paths: | |
- .github/workflows/** | |
- sldr/** | |
branches: [ master ] | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
# Deploy built artefacts to the secrets.UPLOAD_TARGET | |
deploy: | |
needs: build | |
uses: ./.github/workflows/deploy.yml | |
with: | |
stage_to: sldr-staging | |
secrets: | |
uploader_key: ${{ secrets.UPLOADER_SSH_KEY }} | |
server_address: ${{ secrets.UPLOAD_TARGET }} | |
repository_dispatch_pat: ${{ secrets.REPO_DISPATCH_TOKEN }} |