api.auth/.forgejo/workflows/build.yml
Robert Marshall 03b4088e19
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m43s
Update everything and add Forgejo workflow
2025-07-05 19:57:43 +01:00

23 lines
524 B
YAML

name: Build and Push Docker Image
on: [push]
jobs:
build-and-push:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
docker.robware.uk/api.projects:latest
docker.robware.uk/api.projects:${{env.GITHUB_SHA}}