Skip to content

Commit 5bcbdba

Browse files
committed
Add setp to deploy
1 parent e55cf10 commit 5bcbdba

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/api.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ permissions:
1313
id-token: write
1414

1515
jobs:
16-
Test:
16+
test:
17+
name: Integration Tests
1718
runs-on: ubuntu-latest
1819
steps:
1920
- name: Checkout 🛎
@@ -73,9 +74,10 @@ jobs:
7374
working-directory: ./tests
7475
run: docker compose down -v
7576

76-
Deploy:
77+
deploy:
78+
name: Deploy 🚀
7779
runs-on: ubuntu-latest
78-
needs: Test
80+
needs: test
7981
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
8082
steps:
8183
- name: Authenticate to Google Cloud
@@ -87,7 +89,7 @@ jobs:
8789
- name: Set up Cloud SDK
8890
uses: google-github-actions/setup-gcloud@v3
8991

90-
- name: Trigger Cloud Build Deploy 🚀
92+
- name: Trigger Cloud Build Deploy
9193
run: |
9294
BUILD_ID=$(gcloud builds triggers run api-httpsms-com \
9395
--region=global \

.github/workflows/web.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ defaults:
1111

1212
jobs:
1313
ci:
14+
name: Build & Deploy
1415
runs-on: ${{ matrix.os }}
1516

1617
strategy:

0 commit comments

Comments
 (0)