Avoid an issue when a token is outdated and users want to login #109
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: Build and Deploy to Prod | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-prod-container: | |
uses: ./.github/workflows/build-image.yml | |
secrets: inherit | |
deploy-prod-container: | |
needs: build-prod-container | |
uses: ./.github/workflows/deploy-container.yml | |
secrets: inherit |