test new workflows
All checks were successful
Build and Push Docker Image / build (push) Successful in 17s

This commit is contained in:
Lukas Greve
2025-11-13 21:27:54 +01:00
parent ee98e6edfc
commit 25fb6a4a0f
2 changed files with 5 additions and 8 deletions

View File

@@ -7,11 +7,8 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Registry - name: Login to Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
@@ -20,7 +17,7 @@ jobs:
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push - name: Build and push
uses: docker/build-push-action@v5 uses: docker/build-push-action@v6
with: with:
context: . context: .
push: true push: true

View File

@@ -2,17 +2,17 @@ name: Build and Push Docker Image
on: on:
push: push:
branches: [ lol ] branches: [ main ]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Login to Registry - name: Login to Registry
uses: docker/login-action@v2 uses: docker/login-action@v3
with: with:
registry: git.phyllo.me registry: git.phyllo.me
username: ${{ secrets.REGISTRY_USER }} username: ${{ secrets.REGISTRY_USER }}