diff options
author | Alex Auvolat <alex@adnab.me> | 2024-02-29 16:35:40 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-02-29 17:19:46 +0100 |
commit | a6660f71e622957a30d7c53c6bfd57f4772709dd (patch) | |
tree | 971ec3b348e4d3891b07ab7c2f6ffea0a1734314 /.woodpecker/publish.yaml | |
parent | 083e982f5fd0e88e496da7d67734abd8927f3f98 (diff) | |
download | garage-a6660f71e622957a30d7c53c6bfd57f4772709dd.tar.gz garage-a6660f71e622957a30d7c53c6bfd57f4772709dd.zip |
[woodpecker-0.8.x] backport woodpecker CI to v0.8.x branchwoodpecker-0.8.x
Diffstat (limited to '.woodpecker/publish.yaml')
-rw-r--r-- | .woodpecker/publish.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.woodpecker/publish.yaml b/.woodpecker/publish.yaml new file mode 100644 index 00000000..e3feb2da --- /dev/null +++ b/.woodpecker/publish.yaml @@ -0,0 +1,29 @@ +when: + event: + - deployment + - cron + +depends_on: + - release + +steps: + - name: refresh-index + image: nixpkgs/nix:nixos-22.05 + secrets: + - source: garagehq_aws_access_key_id + target: AWS_ACCESS_KEY_ID + - source: garagehq_aws_secret_access_key + target: AWS_SECRET_ACCESS_KEY + commands: + - mkdir -p /etc/nix && cp nix/nix.conf /etc/nix/nix.conf + - nix-shell --attr release --run "refresh_index" + + - name: multiarch-docker + image: nixpkgs/nix:nixos-22.05 + secrets: + - docker_auth + commands: + - mkdir -p /root/.docker + - echo $DOCKER_AUTH > /root/.docker/config.json + - export CONTAINER_TAG=${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + - nix-shell --attr release --run "multiarch_docker" |