change meta
All checks were successful
n-good / Build-Docker-Image (push) Successful in 27s

This commit is contained in:
2025-02-18 18:05:35 -05:00
parent 7142943b71
commit 066eadd347
3 changed files with 37 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
name: n-good
run-name: building n-gon
on: [push]
jobs:
Build-Docker-Image:
runs-on: ubuntu-latest
steps:
- name: Pull repo
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: swaous.asuscomm.com
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build
run: |
docker build -t swaous.asuscomm.com/n-gon-improved:latest .
docker push swaous.asuscomm.com/n-gon-improved:latest