-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add production release GitHub action (#308)
- Loading branch information
1 parent
1e33589
commit 2c9d680
Showing
18 changed files
with
227 additions
and
101 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Deploys all the resources to production environment | ||
name: Production Release | ||
on: | ||
release: | ||
|
||
jobs: | ||
bd-deployment: | ||
name: Database Deployment | ||
uses: ./.github/workflows/db-prod.yml | ||
secrets: inherit | ||
bd-update: | ||
name: Database Update | ||
needs: bd-deployment | ||
uses: ./.github/workflows/db-update-prod.yml | ||
secrets: inherit | ||
bash-deployment: | ||
name: Bash Processes Deployment | ||
needs: bd-update | ||
uses: ./.github/workflows/datasets-batch-deployer-prod.yml | ||
secrets: inherit | ||
api-deployment: | ||
name: API Deployment | ||
needs: bash-deployment | ||
uses: ./.github/workflows/api-prod.yml | ||
secrets: inherit | ||
integration-tests: | ||
uses: ./.github/workflows/integration-tests.yml | ||
needs: api-deployment | ||
with: | ||
API_URL: "https://api.mobilitydatabase.org" | ||
secrets: | ||
REFRESH_TOKEN: ${{ secrets.PROD_API_TEST_REFRESH_TOKEN }} | ||
web-deployment: | ||
name: Web Deployment | ||
needs: bash-deployment | ||
uses: ./.github/workflows/web-prod.yml | ||
secrets: inherit |
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
Oops, something went wrong.