From 89df16983db5ba4d1e3f8215a0c1e395df12aeb2 Mon Sep 17 00:00:00 2001 From: Nicolas Dubois Date: Wed, 15 Jan 2025 10:09:04 +0100 Subject: [PATCH] chore(ghactions): add k8s cd --- .github/workflows/deploy-k8s.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/deploy-k8s.yml diff --git a/.github/workflows/deploy-k8s.yml b/.github/workflows/deploy-k8s.yml new file mode 100644 index 0000000..0e78298 --- /dev/null +++ b/.github/workflows/deploy-k8s.yml @@ -0,0 +1,20 @@ +# https://github.com/EPFL-ENAC/epfl-enac-build-push-deploy-action#readme +name: deploy + +"on": + push: + branches: + - dev + - test + - stage + tags: ["v*.*.*"] + +jobs: + deploy: + uses: EPFL-ENAC/epfl-enac-build-push-deploy-action/.github/workflows/deploy.yml@v2.0.0 + secrets: + token: ${{ secrets.CD_TOKEN }} + with: + org: epfl-alice + repo: alicelandings + build_context: '["./frontend"]'