nginx: fix push, checkout, file context
Some checks failed
nginx-build / build (push) Failing after 2m55s

This commit is contained in:
Elijah Duffy
2025-12-07 23:10:57 -08:00
parent b5ec428e4d
commit 502f936db1

View File

@@ -17,6 +17,11 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Login to AUVEM Registry - name: Login to AUVEM Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
@@ -30,7 +35,9 @@ jobs:
- name: Build and push - name: Build and push
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
file: "{context}/nginx/Dockerfile" context: .
file: ./nginx/Dockerfile
tags: | tags: |
gitea.auvem.com/auvem/wordpress-docker/auvem-nginx:latest gitea.auvem.com/auvem/wordpress-docker/auvem-nginx:latest
gitea.auvem.com/auvem/wordpress-docker/auvem-nginx:${{ github.sha }} gitea.auvem.com/auvem/wordpress-docker/auvem-nginx:${{ github.sha }}
push: true