Updating version number to 1.0.0

This commit is contained in:
2025-02-20 19:33:01 -06:00
parent f44824f438
commit 8f2ac05a69

View File

@@ -5,14 +5,9 @@ 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' }} 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
@@ -22,7 +17,6 @@ jobs:
deploy-api: deploy-api:
name: deploy-api name: deploy-api
needs: needs:
- changes
- build-api - build-api
uses: ./.github/workflows/deploy.yaml uses: ./.github/workflows/deploy.yaml
with: with:
@@ -34,8 +28,6 @@ jobs:
build-app: build-app:
if: ${{ needs.changes.outputs.app == 'true' }} 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
@@ -45,7 +37,6 @@ jobs:
deploy-app: deploy-app:
name: deploy-app name: deploy-app
needs: needs:
- changes
- build-app - build-app
uses: ./.github/workflows/deploy.yaml uses: ./.github/workflows/deploy.yaml
with: with: