first commit
Some checks failed
Docker image CI for GHCR / build_and_publish (push) Failing after 33s

This commit is contained in:
2025-06-06 19:03:06 -04:00
commit 7697b5862e
4 changed files with 287 additions and 0 deletions

14
.github/workflows/publish-image.yaml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: Docker image CI for GHCR
on: push
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and push image
run: |
docker login --username anaxios --password ${{ secrets.GH_TOKEN }} ghcr.io
docker build . --tag ghcr.io/anaxios/holesail-docker:latest
docker push ghcr.io/anaxios/holesail-docker:latest