mirror of
https://github.com/lemeow125/Notes.git
synced 2025-04-08 02:51:27 +08:00
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
labels:
|
|
platform: linux/amd64
|
|
|
|
steps:
|
|
- name: build
|
|
image: docker
|
|
environment:
|
|
FORGEJO_REGISTRY_URL:
|
|
from_secret: FORGEJO_REGISTRY_URL
|
|
FORGEJO_REGISTRY_USERNAME:
|
|
from_secret: FORGEJO_REGISTRY_USERNAME
|
|
FORGEJO_REGISTRY_PASSWORD:
|
|
from_secret: FORGEJO_REGISTRY_PASSWORD
|
|
REGISTRY_IMAGE_TAG:
|
|
from_secret: REGISTRY_IMAGE_TAG
|
|
commands:
|
|
- docker build -t "$REGISTRY_IMAGE_TAG" .
|
|
- echo "$FORGEJO_REGISTRY_PASSWORD" | docker login "$FORGEJO_REGISTRY_URL" --password-stdin -u "$FORGEJO_REGISTRY_USERNAME"
|
|
- docker push "$REGISTRY_IMAGE_TAG"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- name: ntfy
|
|
image: codeberg.org/l-x/woodpecker-ntfy
|
|
settings:
|
|
url:
|
|
from_secret: NTFY_URL
|
|
title: "$CI_REPO_NAME build $CI_PREV_PIPELINE_STATUS"
|
|
priority: urgent
|
|
click: https://blog.06222001.xyz
|
|
icon: https://blog.06222001.xyz/img/logo.svg
|
|
tags: robot,${CI_REPO_NAME}
|
|
message: ${CI_COMMIT_MESSAGE}
|
|
|
|
when:
|
|
- branch: master
|
|
event: push
|