set up deadlyboringmath.us
Some checks failed
Build / Build-Docker-Image (push) Failing after 1m36s

This commit is contained in:
2025-02-18 11:32:20 -05:00
commit f1c9528581
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
name: Build
run-name: building deadlyboringmath.us
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/deadlyboringmath.us:latest .
docker push swaous.asuscomm.com/deadlyboringmath.us:latest