Skip to content

More complete use of official docker actions #10

More complete use of official docker actions

More complete use of official docker actions #10

Workflow file for this run

name: Release
on:
push:
branches:
- "main"
env:
REGISTRY: ghcr.io
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test
run: go test -v ./...
push:
name: Push
runs-on: ubuntu-latest
needs: test
steps:
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
- name: Login
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
name: Check out code
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
deployStg:
name: Deploy Staging
runs-on: ubuntu-latest
needs: push
container:
image: docker.io/bitnami/kubectl:1.29.0
steps:
- name: "Patch Image"
run: |
echo $KUBE_CONFIG | base64 -d > kc.yaml
kubectl --kubeconfig kc.yaml set image deployment/profile-staging svc=$NEW_IMAGE
env:
KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
NEW_IMAGE: ${{ needs.push.outputs.tags }}
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: push
container:
image: docker.io/bitnami/kubectl:1.29.0
steps:
- name: "Patch Image"
run: |
echo $KUBE_CONFIG | base64 -d > kc.yaml
kubectl --kubeconfig kc.yaml set image deployment/profile svc=$NEW_IMAGE
env:
KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
NEW_IMAGE: ${{ needs.push.outputs.tags }}