sub2clash/.woodpecker/docker.yml

22 lines
476 B
YAML
Raw Normal View History

2024-04-17 21:52:03 +08:00
when:
2024-04-23 17:28:05 +08:00
- event: tag
ref: refs/tags/v*
2024-04-17 21:52:03 +08:00
steps:
2024-04-23 17:28:05 +08:00
- name: prepare-tags
image: bash
commands:
- |
echo "${CI_COMMIT_TAG##v}" > .tags
if ! echo "${CI_COMMIT_TAG}" | grep -Eq "beta|alpha"; then
echo "latest" > .tags
fi
2024-04-17 21:52:03 +08:00
- name: build
image: woodpeckerci/plugin-docker-buildx
settings:
2024-04-23 15:03:21 +08:00
platforms: linux/amd64
2024-04-17 21:52:03 +08:00
repo: nite07/sub2clash
username: nite07
password:
from_secret: docker_password