Skip to content

Commit

Permalink
Update CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Kay-Zee committed Nov 5, 2024
1 parent 99b91c5 commit 73887fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: CD

on:
# Workflow dispatch for now, while we're testing environments
push:
tags:
- '*'
- 'v*'
- "!daily-*"

env:
Expand All @@ -13,6 +14,7 @@ jobs:
docker-push:
name: Push to container registry
runs-on: ubuntu-latest
environment: Production Docker Registry
steps:
- name: Setup Go
uses: actions/setup-go@v4
Expand All @@ -21,6 +23,8 @@ jobs:
go-version: ${{ env.GO_VERSION }}
- name: Checkout repo
uses: actions/checkout@v2
with:
ref: ${{ inputs.tag }}
# Provide Google Service Account credentials to Github Action, allowing interaction with the Google Container Registry
# Logging in as [email protected]
- id: auth
Expand Down

0 comments on commit 73887fd

Please sign in to comment.