Remove .github workflows
Some checks failed
/ publish-docker (push) Failing after 44s

This commit is contained in:
Laborratte 5 2025-11-14 22:10:12 +01:00
parent b46869503e
commit 80292a8c73
Signed by: Laborratte5
GPG key ID: 3A30072E35202C02

View file

@ -1,29 +0,0 @@
name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build the Docker image
run: |
docker build . --file Dockerfile --tag ghcr.io/squazz/linux-iso-seeder:latest
- name: Push the Docker image
run: |
docker push ghcr.io/squazz/linux-iso-seeder:latest