Compare commits

...

2 commits

Author SHA1 Message Date
b5d4413c1c change git domain 2023-07-05 23:36:51 +02:00
bc7b962aba use semantic versioning 2023-06-14 22:13:59 +02:00
5 changed files with 24 additions and 8 deletions

View file

@ -12,7 +12,7 @@ resource_types:
- name: apprise - name: apprise
type: registry-image type: registry-image
source: source:
repository: git.pim.kunis.nl/pim/concourse-apprise-notifier repository: git.kun.is/pim/concourse-apprise-notifier
``` ```
## Source Configuration ## Source Configuration

View file

@ -1 +1 @@
`fly -t home set-pipeline -l secrets.yml -l vars.yml -p concourse-apprise-notifier -c pipeline.yml` `fly -t home set-pipeline -l secrets.yml -p concourse-apprise-notifier -c pipeline.yml`

4
labels
View file

@ -1,6 +1,6 @@
org.opencontainers.image.authors=Pim Kunis org.opencontainers.image.authors=Pim Kunis
org.opencontainers.image.source=https://git.pim.kunis.nl/pim/concourse-apprise-notifier/ org.opencontainers.image.source=https://git.kun.is/pim/concourse-apprise-notifier/
org.opencontainers.image.documentation=https://git.pim.kunis.nl/pim/concourse-apprise-notifier/src/branch/master/README.md org.opencontainers.image.documentation=https://git.kun.is/pim/concourse-apprise-notifier/src/branch/master/README.md
org.opencontainers.image.description=Concourse resource type to send Apprise notifications. org.opencontainers.image.description=Concourse resource type to send Apprise notifications.
com.github.actions.run_url= com.github.actions.run_url=
com.github.actions.run_id= com.github.actions.run_id=

View file

@ -3,16 +3,26 @@ resources:
- name: repo - name: repo
type: git type: git
source: source:
uri: https://git.pim.kunis.nl/pim/concourse-apprise-notifier.git uri: https://git.kun.is/pim/concourse-apprise-notifier.git
icon: git icon: git
- name: registry-image - name: registry-image
type: registry-image type: registry-image
source: source:
repository: git.pim.kunis.nl/pim/concourse-apprise-notifier repository: git.kun.is/pim/concourse-apprise-notifier
username: pim username: pim
password: ((api_key)) password: ((api_key))
tag: ((image_version)) tag: stable
icon: docker icon: docker
- name: version
type: semver
source:
driver: git
initial_version: "1.1.0"
uri: ssh://git@git.kun.is:56287/pim/concourse-apprise-notifier.git
branch: version
file: version
private_key: {{private_key}}
icon: numeric
jobs: jobs:
- name: build-and-publish-image - name: build-and-publish-image
@ -41,6 +51,13 @@ jobs:
- | - |
build build
ls image ls image
- get: version
params:
bump: patch
- put: registry-image - put: registry-image
params: params:
image: image/image.tar image: image/image.tar
additional_tags: version/version
- put: version
params:
file: version/version

View file

@ -1 +0,0 @@
image_version: "1.1"