Split it all up into their own steps
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
0466439d9f
commit
b1e085c338
1 changed files with 23 additions and 31 deletions
54
.drone.yml
54
.drone.yml
|
@ -7,55 +7,47 @@ platform:
|
|||
arch: arm64
|
||||
|
||||
steps:
|
||||
- name: Build
|
||||
- name: 4get
|
||||
environment:
|
||||
ARK_USERNAME:
|
||||
from_secret: ARK_USERNAME
|
||||
ARK_PASSWORD:
|
||||
from_secret: ARK_PASSWORD
|
||||
commands:
|
||||
############################
|
||||
## 4get ##
|
||||
############################
|
||||
- git clone https://ark.sudovanilla.org/korbs/4get/ && cd ./4get/
|
||||
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||
- docker build -t ark.sudovanilla.org/korbs/4get:arm64 .
|
||||
- docker push ark.sudovanilla.org/korbs/4get:arm64
|
||||
- cd ../
|
||||
|
||||
############################
|
||||
## Cinny ##
|
||||
############################
|
||||
- name: Cinny
|
||||
environment:
|
||||
ARK_USERNAME:
|
||||
from_secret: ARK_USERNAME
|
||||
ARK_PASSWORD:
|
||||
from_secret: ARK_PASSWORD
|
||||
commands:
|
||||
- git clone https://github.com/cinnyapp/cinny && cd ./cinny/
|
||||
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||
- docker build -t ark.sudovanilla.org/korbs/cinny:arm64 .
|
||||
- docker push ark.sudovanilla.org/korbs/cinny:arm64
|
||||
- cd ../
|
||||
|
||||
############################
|
||||
## Phanpy ##
|
||||
############################
|
||||
# - git clone https://github.com/cheeaun/phanpy && cd ./phanpy/
|
||||
# - echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||
# - wget https://ark.sudovanilla.org/Korbs/4get-build-automation/raw/branch/main/phanpy/Dockerfile
|
||||
# - docker build -t ark.sudovanilla.org/korbs/phanpy:arm64 .
|
||||
# - docker push ark.sudovanilla.org/korbs/phanpy:arm64
|
||||
# - cd ../
|
||||
|
||||
############################
|
||||
## Bun ##
|
||||
############################
|
||||
- name: Bun
|
||||
environment:
|
||||
ARK_USERNAME:
|
||||
from_secret: ARK_USERNAME
|
||||
ARK_PASSWORD:
|
||||
from_secret: ARK_PASSWORD
|
||||
commands:
|
||||
- git clone https://github.com/oven-sh/bun && cd ./bun/dockerhub/debian-slim/
|
||||
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||
- docker build -t ark.sudovanilla.org/korbs/bun:arm64 .
|
||||
- docker push ark.sudovanilla.org/korbs/bun:arm64
|
||||
- cd ../
|
||||
|
||||
############################
|
||||
## Hyperpipe ##
|
||||
############################
|
||||
- name: Hyperpipe
|
||||
environment:
|
||||
ARK_USERNAME:
|
||||
from_secret: ARK_USERNAME
|
||||
ARK_PASSWORD:
|
||||
from_secret: ARK_PASSWORD
|
||||
commands:
|
||||
- git clone https://codeberg.org/Hyperpipe/Hyperpipe && cd ./Hyperpipe/
|
||||
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||
- docker build -t ark.sudovanilla.org/korbs/hyperpipe:arm64 .
|
||||
- docker push ark.sudovanilla.org/korbs/hyperpipe:arm64
|
||||
- cd ../
|
||||
- docker push ark.sudovanilla.org/korbs/hyperpipe:arm64
|
Loading…
Reference in a new issue