nginx-envsubst/ci/pipeline.yml

69 lines
1.5 KiB
YAML
Raw Normal View History

2022-03-09 16:49:43 +01:00
---
resources:
- name: source
type: git
source:
uri: https://gitea.redxef.at/redxef/nginx-envsubst
branch: master
2022-03-09 17:37:07 +01:00
fetch_tags: true
2022-03-09 16:49:43 +01:00
- name: upstream-image
type: registry-image
source:
2022-05-04 00:07:07 +02:00
repository: nginx
tag: alpine
2022-03-09 16:49:43 +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
2022-03-09 17:23:52 +01:00
git show-ref --tags | \
sed -n "/$(git rev-parse HEAD)/ s|$(git rev-parse HEAD).refs/tags/||gp" \
>> docker-tags/tags.txt
2022-03-09 16:49:43 +01:00
- task: build
privileged: true
config:
platform: linux
image_resource:
type: registry-image
source:
repository: redxef/concourse-buildkit
inputs:
- name: source
path: .
- name: docker-tags
params:
username: ((docker.username))
password: ((docker.password))
repository: docker.io/redxef/nginx-envsubst
tag: latest
additional_tags: docker-tags/tags.txt
push: true
platform: aarch64,arm,i386,ppc64le,s390x,x86_64
context: .
manual: false
run:
path: build