mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 04:09:25 +08:00
Add separate build platforms
This commit is contained in:
parent
2d0503717a
commit
dd12c84d46
2 changed files with 22 additions and 0 deletions
22
.woodpecker/.build_x86.yml
Normal file
22
.woodpecker/.build_x86.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
labels:
|
||||||
|
platform: linux/amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: docker
|
||||||
|
when:
|
||||||
|
- branch: master
|
||||||
|
event: push
|
||||||
|
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
|
||||||
|
secrets:
|
||||||
|
[
|
||||||
|
FORGEJO_REGISTRY_URL,
|
||||||
|
FORGEJO_REGISTRY_USERNAME,
|
||||||
|
FORGEJO_REGISTRY_PASSWORD,
|
||||||
|
REGISTRY_IMAGE_TAG,
|
||||||
|
]
|
Loading…
Reference in a new issue