mirror of https://github.com/hrfee/jfa-go
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
699 B
27 lines
699 B
4 months ago
|
when:
|
||
|
- event: tag
|
||
|
branch: main
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: docker.io/woodpeckerci/plugin-docker-buildx
|
||
|
settings:
|
||
|
username:
|
||
|
from_secret: DOCKER_USERNAME
|
||
|
password:
|
||
|
from_secret: DOCKER_TOKEN
|
||
|
repo: docker.io/hrfee/jfa-go
|
||
|
tags: FIXME-latest
|
||
|
registry: docker.io
|
||
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||
|
- name: buildrone
|
||
|
image: docker.io/python
|
||
|
environment:
|
||
|
BUILDRONE_KEY:
|
||
|
from_secret: BUILDRONE_KEY
|
||
|
commands:
|
||
|
- wget https://builds.hrfee.pw/upload.py
|
||
|
- pip install requests
|
||
|
- python upload.py https://builds.hrfee.pw hrfee jfa-go --tag docker-stable=true
|
||
|
|