pogdark-api/.gitea/workflows/build.yaml
whysman 1e73c9c7d1
All checks were successful
Build Pogdark API / Build Pogdark API (push) Successful in 36s
Updated Dockerfile & build.yaml
2024-11-07 01:13:39 -05:00

26 lines
498 B
YAML

name: Build Pogdark API
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build Pogdark API
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Docker Image
run: |
docker build -t localhost:5000/pogdark-api:latest .
- name: Push Docker Image to Local Registry
run: |
docker push localhost:5000/pogdark-api:latest