Skip to content

Commit

Permalink
NODE-5652 Release 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
braek-neck committed Aug 20, 2024
1 parent f480034 commit 119844d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
27 changes: 23 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,25 @@ jobs:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v3.0.2

- name: Import secrets
uses: hashicorp/vault-action@d1720f055e0635fd932a1d2a48f87a666a57906c # v3.0.0
id: secrets
with:
exportEnv: false
url: ${{ secrets.VAULT_URL }}
role: ${{ secrets.VAULT_ROLE }}
method: kubernetes
path: kubernetes-ci
secrets: |
kv-gitlab-ci/data/github/shared/dockerhub-creds user | DOCKERHUB_USER ;
kv-gitlab-ci/data/github/shared/dockerhub-creds password | DOCKERHUB_PASSWORD ;
- name: Login
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
with:
username: ${{ steps.secrets.outputs.DOCKERHUB_USER }}
password: ${{ steps.secrets.outputs.DOCKERHUB_PASSWORD }}

- name: Build image
run: make ARCHS=${{ matrix.ARCH }} PLATFORMS=${{ matrix.PLATFORM }} BUILDX_ARGS=--load build

Expand All @@ -45,11 +64,11 @@ jobs:
runs-on: ${{ matrix.RUNNER }}
env:
## US preset
env_code: ingress-us1
CLIENT_ID: 7119
#env_code: ingress-us1
#CLIENT_ID: 7119
## EU preset
# env_code: ingress
# CLIENT_ID: 5
env_code: ingress
CLIENT_ID: 5
needs:
- build
strategy:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SHELL=/bin/bash -o pipefail -o errexit

-include .env

AIO_VERSION ?= 5.0.0
AIO_VERSION ?= 5.0.1
CONTAINER_VERSION ?= test
ALPINE_VERSION = 3.20
NGINX_VERSION = 1.26.2
Expand Down

0 comments on commit 119844d

Please sign in to comment.