8 Commits

Author SHA1 Message Date
argoyle 7ca5fa7b3c chore: remove GitLab CI pipeline
geo-service / build (pull_request) Successful in 2m44s
geo-service / deploy-prod (pull_request) Has been skipped
2026-01-08 20:36:56 +01:00
argoyle 47d05592a7 Merge pull request 'chore(deps): update actions/checkout action to v6' (#250) from renovate/actions-checkout-6.x into master
geo-service / build (push) Successful in 1m47s
geo-service / deploy-prod (push) Failing after 2m40s
Reviewed-on: #250
2026-01-08 09:21:46 +00:00
renovate 562a5a70e4 chore(deps): update actions/checkout action to v6
geo-service / build (pull_request) Successful in 2m1s
geo-service / deploy-prod (pull_request) Has been skipped
2026-01-08 09:17:26 +00:00
argoyle dd65cb20c1 Merge pull request 'ci: add debug logging for KUBECONFIG_CONTENT' (#253) from debug-kubeconfig into master
geo-service / build (push) Successful in 9m35s
geo-service / deploy-prod (push) Failing after 2m31s
Reviewed-on: #253
2026-01-08 09:01:24 +00:00
argoyle d5c3dc66fe ci: add debug logging for KUBECONFIG_CONTENT
geo-service / build (pull_request) Successful in 1m44s
geo-service / deploy-prod (pull_request) Has been skipped
2026-01-08 09:57:47 +01:00
argoyle 701e9f5292 Merge pull request 'ci: remove KUBECONFIG_CONTENT (runner env var)' (#252) from remove-kubeconfig into master
geo-service / build (push) Successful in 1m20s
geo-service / deploy-prod (push) Successful in 39s
Reviewed-on: #252
2026-01-08 07:31:09 +00:00
argoyle e7bfdf16a6 ci: remove KUBECONFIG_CONTENT (runner env var)
geo-service / build (pull_request) Successful in 2m54s
geo-service / deploy-prod (pull_request) Has been skipped
2026-01-08 08:26:53 +01:00
argoyle c0d5186ad4 Merge pull request 'ci: add KUBECONFIG_CONTENT secret to deploy job' (#251) from kubeconfig-secret into master
geo-service / build (push) Successful in 15s
geo-service / deploy-prod (push) Failing after 37s
Reviewed-on: #251
2026-01-07 21:17:35 +00:00
2 changed files with 2 additions and 35 deletions
+2 -8
View File
@@ -13,7 +13,7 @@ jobs:
BUILDTOOLS_CONTENT: ${{ secrets.BUILDTOOLS_CONTENT }}
GITEA_REPOSITORY: ${{ gitea.repository }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: buildtool/setup-buildtools-action@v1
- name: Build and push
run: unset GITEA_TOKEN && build && push
@@ -25,15 +25,9 @@ jobs:
env:
BUILDTOOLS_CONTENT: ${{ secrets.BUILDTOOLS_CONTENT }}
GITEA_REPOSITORY: ${{ gitea.repository }}
KUBECONFIG_CONTENT: ${{ secrets.KUBECONFIG_CONTENT }}
environment: prod
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: buildtool/setup-buildtools-action@v1
- name: Install aws-iam-authenticator
run: |
curl -Lo aws-iam-authenticator https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/latest/download/aws-iam-authenticator_linux_amd64
chmod +x aws-iam-authenticator
sudo mv aws-iam-authenticator /usr/local/bin/
- name: Deploy
run: deploy prod
-27
View File
@@ -1,27 +0,0 @@
include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
- project: unboundsoftware/ci-templates
file: Defaults.gitlab-ci.yml
stages:
- build
- deploy
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
script:
- build
- push
deploy:
stage: deploy
when: on_success
script:
- echo Deploying
- deploy prod
environment:
name: prod
only:
- master