mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 04:08:39 +01:00
19 lines
No EOL
472 B
YAML
19 lines
No EOL
472 B
YAML
kind: pipeline
|
|
type: exec
|
|
name: Build and Push Docker Image
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: Build
|
|
environment:
|
|
CODEBERG_USERNAME:
|
|
from_secret: CODEBERG_USERNAME
|
|
CODEBERG_PASSWORD:
|
|
from_secret: CODEBERG_PASSWORD
|
|
commands:
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
|
- docker build -t codeberg.org/korbs/poke:arm64 .
|
|
- docker push codeberg.org/korbs/poke:arm64 |