Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: Deploy to production
on:
workflow_run:
workflows: ["Test"]
branches:
- release
release:
types:
- completed
- published
env:
PROJECT_ID: ${{ secrets.GKE_PROJECT }}
GKE_CLUSTER: p5-gke-cluster
Expand All @@ -21,7 +18,7 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v3
with:
ref: release
ref: ${{ github.event.release.tag_name }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
Expand Down
Loading