2 Commits

Author SHA1 Message Date
d5dc96bfbd t-shoot triggering 2022-08-22 11:06:22 +12:00
d2ac0dd561 tshoot expansions 2022-08-22 11:03:44 +12:00

View File

@ -33,21 +33,21 @@ pipeline:
commands: commands:
- echo $REGISTRY_PASSWORD | docker login $REGISTRY -u $REGISTRY_USER --password-stdin - echo $REGISTRY_PASSWORD | docker login $REGISTRY -u $REGISTRY_USER --password-stdin
- docker build - docker build
-t $REGISTRY/${CI_REPO}:${CI_COMMIT_TAG} -t $REGISTRY/$${CI_REPO}:$${CI_COMMIT_TAG}
-t $REGISTRY/${CI_REPO}:$(date +%F_%H-%M) -t $REGISTRY/$${CI_REPO}:$(date +%F_%H-%M)
-t $REGISTRY/${CI_REPO}:latest -t $REGISTRY/$${CI_REPO}:latest
--pull --pull
--build-arg $${SHOUTRRR_VERSION} --build-arg $${SHOUTRRR_VERSION}
-f $${DOCKERFILE} -f $${DOCKERFILE}
$${CONTEXT} $${CONTEXT}
- docker push -a $REGISTRY/${CI_REPO} - docker push -a $REGISTRY/$${CI_REPO}
notify-matrix-success: notify-matrix-success:
image: code.balsillie.net/containers/woodpecker-util image: code.balsillie.net/containers/woodpecker-util
pull: false pull: false
when: when:
- event: tag - event: tag
status: [ success ] # status: [ success ]
environment: environment:
*vars *vars
secrets: secrets:
@ -56,14 +56,14 @@ pipeline:
commands: commands:
- shoutrrr send - shoutrrr send
--url matrix://$${MATRIX_ACCESS_TOKEN}@$${MATRIX_HOST}:$${MATRIX_PORT}/?rooms=$${MATRIX_ROOM} --url matrix://$${MATRIX_ACCESS_TOKEN}@$${MATRIX_HOST}:$${MATRIX_PORT}/?rooms=$${MATRIX_ROOM}
--message "New image build of ${CI_REPO}, ${CI_COMMIT_TAG}, has been completed and pushed." --message "New image build of $${CI_REPO}, $${CI_COMMIT_TAG}, has been completed and pushed."
notify-matrix-failure: notify-matrix-failure:
image: code.balsillie.net/containers/woodpecker-util image: code.balsillie.net/containers/woodpecker-util
pull: false pull: false
when: when:
- event: tag - event: tag
status: [ failure ] # status: [ failure ]
environment: environment:
*vars *vars
secrets: secrets:
@ -72,4 +72,4 @@ pipeline:
commands: commands:
- shoutrrr send - shoutrrr send
--url matrix://$${MATRIX_ACCESS_TOKEN}@$${MATRIX_HOST}:$${MATRIX_PORT}/?rooms=$${MATRIX_ROOM} --url matrix://$${MATRIX_ACCESS_TOKEN}@$${MATRIX_HOST}:$${MATRIX_PORT}/?rooms=$${MATRIX_ROOM}
--message "New image build of ${CI_REPO}, ${CI_COMMIT_TAG}, has failed." --message "New image build of $${CI_REPO}, $${CI_COMMIT_TAG}, has failed."