Log cause of authorization errors (#22) #9
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
on: | |
push: | |
branches: [main] | |
workflow_dispatch: {} | |
name: Deploy | |
# By setting the concurrency to a constant string value, | |
# only one pipeline can run at the same time. | |
# Pipeline from another merge will be in pending state until | |
# the current pipeline finishes. | |
# If yet another merge happens, the pending pipeline is cancelled. | |
# (Only one pipeline is in pending state at any time) | |
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency | |
concurrency: main-deploy | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yaml | |
docker: | |
uses: ./.github/workflows/docker.yaml | |
secrets: inherit |