Skip to content

Commit

Permalink
feat: take CI vars from repository
Browse files Browse the repository at this point in the history
  • Loading branch information
demo-exe committed Mar 25, 2024
1 parent e36bf4a commit b430468
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
- "**"

env:
CUR_REGISTRY: "registry.cennso.com"
REGISTRY: "quay.io"
IMAGE_NAME: travelping/upg-vpp
CUR_REGISTRY: ${{ vars.CUR_REGISTRY }} # "registry.cennso.com"
REGISTRY: ${{ vars.REGISTRY }} # "quay.io"
IMAGE_NAME: ${{ vars.IMAGE_NAME }} # travelping/upg-vpp
# Make 'git am' work
GIT_AUTHOR_NAME: Dummy
GIT_AUTHOR_EMAIL: [email protected]
Expand Down

0 comments on commit b430468

Please sign in to comment.