Update .gitea/workflows/docker-build-and-push.yaml
This commit is contained in:
parent
af59783877
commit
0c14f98f0c
@ -28,12 +28,6 @@ jobs:
|
||||
|
||||
steps:
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Import Secrets
|
||||
uses: hashicorp/vault-action@v2
|
||||
with:
|
||||
@ -42,6 +36,14 @@ jobs:
|
||||
secrets: |
|
||||
cicd/data/docker password | REGISTRY_PASSWORD ;
|
||||
cicd/data/docker username | REGISTRY_USERNAME ;
|
||||
cicd/data/submodule token | SUBMODULE_TOKEN ;
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
token: ${{ env.SUBMODULE_TOKEN }}
|
||||
|
||||
- name: Set up Docker BuildX
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
@ -42,6 +42,10 @@ on:
|
||||
required: true
|
||||
type: string
|
||||
description: Kubeconf secret path in vault for prod
|
||||
HELM_VERSION:
|
||||
type: string
|
||||
default: 3.17
|
||||
description: Last stable with our chart's
|
||||
secrets:
|
||||
VAULT_TOKEN:
|
||||
required: true
|
||||
@ -90,7 +94,7 @@ jobs:
|
||||
- name: Install helm
|
||||
uses: azure/setup-helm@v4.2.0
|
||||
with:
|
||||
version: latest
|
||||
version: ${{ inputs.HELM_VERSION }}
|
||||
|
||||
- name: Set up Kubectl
|
||||
uses: azure/k8s-set-context@v4
|
||||
|
@ -22,8 +22,20 @@ jobs:
|
||||
image: catthehacker/ubuntu:act-22.04
|
||||
steps:
|
||||
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
- name: Import Common Secrets
|
||||
uses: hashicorp/vault-action@v2
|
||||
with:
|
||||
url: https://vault.project-quest-dev.com
|
||||
token: ${{ secrets.VAULT_TOKEN }}
|
||||
secrets: |
|
||||
cicd/data/submodule token | SUBMODULE_TOKEN ;
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
token: ${{ env.SUBMODULE_TOKEN }}
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
|
Loading…
x
Reference in New Issue
Block a user