Skip to content

build-nginx

build-nginx #762

Workflow file for this run

name: build-nginx
on:
workflow_dispatch:
push:
paths:
- 'nginx/**'
branches: main
schedule:
- cron: "* 22 * * 4"
jobs:
nginx:
name: "nginx:latest"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./nginx
file: ./nginx/latest.dockerfile
platforms: linux/amd64
push: true
tags: ghcr.io/${{ github.repository_owner }}/nginx:latest