tubearchivist/.drone.yml

46 lines
714 B
YAML
Raw Normal View History

2022-05-11 11:44:57 +00:00
kind: pipeline
type: docker
2022-05-12 09:33:18 +00:00
name: amd64
2022-05-11 11:44:57 +00:00
2022-05-11 14:37:03 +00:00
platform:
os: linux
arch: amd64
2022-05-11 12:15:47 +00:00
# test comment
2022-05-11 11:44:57 +00:00
steps:
- name: docker
image: plugins/docker
settings:
2022-05-11 15:29:04 +00:00
repo: bbilly1/tubearchivist-test
2022-05-11 11:44:57 +00:00
tags:
- unstable
2022-05-11 16:39:34 +00:00
username:
from_secret: docker_username
password:
from_secret: docker_token
2022-05-11 17:20:57 +00:00
build_args:
- TARGETPLATFORM=linux/amd64
2022-05-12 09:33:18 +00:00
---
kind: pipeline
type: docker
name: arm64
platform:
os: linux
arch: arm64
steps:
- name: docker
image: plugins/docker
settings:
repo: bbilly1/tubearchivist-test
tags:
- unstable
username:
from_secret: docker_username
password:
from_secret: docker_token
build_args:
- TARGETPLATFORM=linux/arm64