3.2.0 release #21
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: | |
- develop | |
jobs: | |
test: | |
name: Test source | |
uses: ./.github/workflows/test.yml | |
secrets: inherit | |
with: | |
environment: dev | |
build-bot: | |
name: Build bot | |
needs: test | |
uses: ./.github/workflows/build-bot.yml | |
secrets: inherit | |
with: | |
environment: dev | |
deploy-bot: | |
name: Deploy bot | |
needs: build-bot | |
uses: ./.github/workflows/deploy-bot.yml | |
secrets: inherit | |
with: | |
environment: dev | |
build-web: | |
name: Build web | |
needs: test | |
uses: ./.github/workflows/build-web.yml | |
secrets: inherit | |
with: | |
environment: dev | |
deploy-web: | |
name: Deploy web | |
needs: build-web | |
uses: ./.github/workflows/deploy-web.yml | |
secrets: inherit | |
with: | |
environment: dev | |
build-func: | |
name: Build func | |
needs: test | |
uses: ./.github/workflows/build-func.yml | |
secrets: inherit | |
with: | |
environment: dev | |
deploy-func: | |
name: Deploy func | |
needs: build-func | |
uses: ./.github/workflows/deploy-func.yml | |
secrets: inherit | |
with: | |
environment: dev | |
build-manifest: | |
name: Build manifest | |
uses: ./.github/workflows/build-manifest.yml | |
secrets: inherit | |
with: | |
environment: dev |