Skip to content

Update Dockerfile

Update Dockerfile #99

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
#
name: Link-to-QR CICD
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
go_ci_job:
name: Go CI Job
uses: ./.github/workflows/linktoqr_ci.yml
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
go_k8s_cd_job:
needs: go_ci_job
name: CD in K8s
uses: ./.github/workflows/linktoqr_k8s_cd.yml
# go_aws_cd_job:
# needs: go_ci_job
# name: CD in AWS
# uses: ./.github/workflows/linktoqr_aws_cd.yml
# secrets:
# TF_API_TOKEN: ${{ secrets.TF_API_TOKEN }}