Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
b5d4413c1c | |||
bc7b962aba |
5 changed files with 24 additions and 8 deletions
|
@ -12,7 +12,7 @@ resource_types:
|
|||
- name: apprise
|
||||
type: registry-image
|
||||
source:
|
||||
repository: git.pim.kunis.nl/pim/concourse-apprise-notifier
|
||||
repository: git.kun.is/pim/concourse-apprise-notifier
|
||||
```
|
||||
|
||||
## Source Configuration
|
||||
|
|
|
@ -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
4
labels
|
@ -1,6 +1,6 @@
|
|||
org.opencontainers.image.authors=Pim Kunis
|
||||
org.opencontainers.image.source=https://git.pim.kunis.nl/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.source=https://git.kun.is/pim/concourse-apprise-notifier/
|
||||
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.
|
||||
com.github.actions.run_url=
|
||||
com.github.actions.run_id=
|
||||
|
|
23
pipeline.yml
23
pipeline.yml
|
@ -3,16 +3,26 @@ resources:
|
|||
- name: repo
|
||||
type: git
|
||||
source:
|
||||
uri: https://git.pim.kunis.nl/pim/concourse-apprise-notifier.git
|
||||
uri: https://git.kun.is/pim/concourse-apprise-notifier.git
|
||||
icon: git
|
||||
- name: registry-image
|
||||
type: registry-image
|
||||
source:
|
||||
repository: git.pim.kunis.nl/pim/concourse-apprise-notifier
|
||||
repository: git.kun.is/pim/concourse-apprise-notifier
|
||||
username: pim
|
||||
password: ((api_key))
|
||||
tag: ((image_version))
|
||||
tag: stable
|
||||
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:
|
||||
- name: build-and-publish-image
|
||||
|
@ -41,6 +51,13 @@ jobs:
|
|||
- |
|
||||
build
|
||||
ls image
|
||||
- get: version
|
||||
params:
|
||||
bump: patch
|
||||
- put: registry-image
|
||||
params:
|
||||
image: image/image.tar
|
||||
additional_tags: version/version
|
||||
- put: version
|
||||
params:
|
||||
file: version/version
|
||||
|
|
1
vars.yml
1
vars.yml
|
@ -1 +0,0 @@
|
|||
image_version: "1.1"
|
Loading…
Reference in a new issue