Add gamma environment infrastructure :3 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish and Deploy (Gamma) | ||
on: | ||
push: | ||
branches: | ||
#- meshdb | ||
- meshdb-admin-dev | ||
jobs: | ||
# Dev and Prod use the same image | ||
push_to_registry_prod: | ||
name: Push to dev | ||
uses: ./.github/workflows/build-push-image.yaml | ||
with: | ||
environment: gamma1 | ||
image_tag: willnilges/network-map:admin-helm-gamma | ||
secrets: inherit | ||
if: github.ref == 'refs/heads/meshdb-admin-dev' | ||
deploy_to_dev3: | ||
name: Deploy to gamma1 | ||
uses: ./.github/workflows/helm-deploy.yaml | ||
with: | ||
environment: gamma1 | ||
imageTag: admin-helm-gamma | ||
secrets: inherit | ||
if: github.ref == 'refs/heads/meshdb-admin-dev' | ||
needs: push_to_registry | ||
Check failure on line 28 in .github/workflows/publish-and-deploy-gamma.yaml
|