Updating version number to 1.0.0
This commit is contained in:
17
.github/workflows/tag.yaml
vendored
17
.github/workflows/tag.yaml
vendored
@@ -5,8 +5,14 @@ on:
|
|||||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
changes:
|
||||||
|
uses: ./.github/workflows/changes.yaml
|
||||||
|
|
||||||
build-api:
|
build-api:
|
||||||
|
if: ${{ needs.changes.outputs.api == 'true' }}
|
||||||
name: build-api
|
name: build-api
|
||||||
|
needs:
|
||||||
|
- changes
|
||||||
uses: ./.github/workflows/api_build.yaml
|
uses: ./.github/workflows/api_build.yaml
|
||||||
with:
|
with:
|
||||||
environment_name: prod
|
environment_name: prod
|
||||||
@@ -15,7 +21,9 @@ jobs:
|
|||||||
|
|
||||||
deploy-api:
|
deploy-api:
|
||||||
name: deploy-api
|
name: deploy-api
|
||||||
needs: build-api
|
needs:
|
||||||
|
- changes
|
||||||
|
- build-api
|
||||||
uses: ./.github/workflows/deploy.yaml
|
uses: ./.github/workflows/deploy.yaml
|
||||||
with:
|
with:
|
||||||
app_name: flying-api
|
app_name: flying-api
|
||||||
@@ -24,7 +32,10 @@ jobs:
|
|||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
build-app:
|
build-app:
|
||||||
|
if: ${{ needs.changes.outputs.app == 'true' }}
|
||||||
name: build-app
|
name: build-app
|
||||||
|
needs:
|
||||||
|
- changes
|
||||||
uses: ./.github/workflows/app_build.yaml
|
uses: ./.github/workflows/app_build.yaml
|
||||||
with:
|
with:
|
||||||
environment_name: prod
|
environment_name: prod
|
||||||
@@ -33,7 +44,9 @@ jobs:
|
|||||||
|
|
||||||
deploy-app:
|
deploy-app:
|
||||||
name: deploy-app
|
name: deploy-app
|
||||||
needs: build-app
|
needs:
|
||||||
|
- changes
|
||||||
|
- build-app
|
||||||
uses: ./.github/workflows/deploy.yaml
|
uses: ./.github/workflows/deploy.yaml
|
||||||
with:
|
with:
|
||||||
app_name: flying-app
|
app_name: flying-app
|
||||||
|
|||||||
Reference in New Issue
Block a user