certbot-duckdns/ci/pipeline.yml

83 lines
1.8 KiB
YAML
Raw Normal View History

2022-03-10 15:54:41 +01:00
---
resources:
- name: source
type: git
source:
uri: https://gitea.redxef.at/redxef/certbot-duckdns
branch: master
fetch_tags: true
- name: upstream-image
type: registry-image
source:
repository: alpine
2022-11-21 15:19:34 +01:00
- name: image
type: oci-image
source:
repository: redxef/certbot-duckdns
tag: latest
username: ((docker.username))
password: ((docker.password))
resource_types:
- name: oci-image
type: registry-image
source:
repository: redxef/concourse-oci-resource
tag: latest
2022-03-10 15:54:41 +01:00
jobs:
- name: build-push
plan:
- get: source
trigger: true
- get: upstream-image
trigger: true
- task: compute-docker-tags
config:
platform: linux
image_resource:
type: registry-image
source:
repository: alpine/git
inputs:
- name: source
path: .
outputs:
- name: docker-tags
run:
path: sh
args:
- -c
- |
#!/usr/bin/env sh
git rev-parse --short HEAD > docker-tags/tags.txt
git show-ref --tags | \
sed -n "/$(git rev-parse HEAD)/ s|$(git rev-parse HEAD).refs/tags/||gp" \
>> docker-tags/tags.txt
- task: build
privileged: true
config:
platform: linux
image_resource:
type: registry-image
source:
repository: redxef/concourse-buildkit
inputs:
- name: source
path: .
- name: docker-tags
2022-11-21 15:19:34 +01:00
outputs:
- name: build-output
2022-03-10 15:54:41 +01:00
params:
2022-11-21 15:19:34 +01:00
dest: build-output/image.tar
2022-03-10 15:54:41 +01:00
platform: aarch64,arm,i386,ppc64le,s390x,x86_64
run:
path: build
2022-11-21 15:19:34 +01:00
- put: image
inputs:
- build-output
- docker-tags
params:
image: build-output/image.tar
additionaltags: docker-tags/tags.txt