2024-01-26 19:39:32 -05:00
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
2024-01-26 20:07:17 -05:00
|
|
|
name: Build and Push Docker Image (Quay)
|
2024-01-26 19:39:32 -05:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build
|
|
|
|
environment:
|
|
|
|
QUAY_USERNAME:
|
|
|
|
from_secret: QUAY_USERNAME
|
|
|
|
QUAY_PASSWORD:
|
|
|
|
from_secret: QUAY_PASSWORD
|
|
|
|
commands:
|
|
|
|
- npm i
|
2024-01-26 20:03:02 -05:00
|
|
|
- echo $QUAY_PASSWORD | docker login quay.io --username $QUAY_USERNAME --password-stdin
|
2024-01-26 20:07:17 -05:00
|
|
|
- docker build -t quay.io/sudovanilla/poketube .
|
|
|
|
- docker push quay.io/sudovanilla/poketube
|