Skip to content

Commit

Permalink
rename github action files
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmwang committed Dec 4, 2024
1 parent dc9c718 commit 69d94b6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 82 deletions.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/cd-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:
build-push:
name: Build and Push Images and Charts
needs: [compute-sha]
uses: ./.github/workflows/cd.yaml
uses: ./.github/workflows/cd-build.yaml
with:
image_tag: ${{ needs.compute-sha.outputs.sha_short }}
chart_ver: 0.1.0-dev.${{ needs.compute-sha.outputs.sha_short }}
secrets: inherit

deploy:
name: SSH and Deploy
needs: [compute-sha, build-push]
uses: ./.github/workflows/deploy.yaml
uses: ./.github/workflows/cd-deploy.yaml
with:
environment: development
name: bt-dev-app-${{ needs.compute-sha.outputs.sha_short }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build-push:
name: Build and Push Images and Charts
needs: [branch-check]
uses: ./.github/workflows/cd.yaml
uses: ./.github/workflows/cd-build.yaml
with:
image_tag: prod
chart_ver: "1.0.0"
Expand All @@ -27,7 +27,7 @@ jobs:
deploy:
name: SSH and Deploy
needs: [build-push]
uses: ./.github/workflows/deploy.yaml
uses: ./.github/workflows/cd-deploy.yaml
with:
environment: production
name: bt-prod-app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build-push:
name: Build and Push Images and Charts
uses: ./.github/workflows/cd.yaml
uses: ./.github/workflows/cd-build.yaml
with:
image_tag: latest
chart_ver: 0.1.0-stage
Expand All @@ -18,7 +18,7 @@ jobs:
deploy:
name: SSH and Deploy
needs: [build-push]
uses: ./.github/workflows/deploy.yaml
uses: ./.github/workflows/cd-deploy.yaml
with:
environment: staging
name: bt-stage-app
Expand Down
34 changes: 0 additions & 34 deletions .github/workflows/gen.yaml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/lint.yaml

This file was deleted.

0 comments on commit 69d94b6

Please sign in to comment.