godash/.forgejo/workflows/build_deploy.yaml
Florian Hoss e8c58c10d4
Some checks failed
Build and Push Docker Image / prepare (push) Failing after 1m1s
Use semver
2024-10-31 10:13:40 +01:00

43 lines
1.2 KiB
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: git.unjx.de/${{ github.repository }}
tags: |
type=semver,pattern={{version}}
labels: |
org.opencontainers.image.title=GoDash
org.opencontainers.image.description=Blasing fast start page for your services
org.opencontainers.image.vendor=Unjx
- name: Login to Forgejo Container Registry
uses: docker/login-action@v3
with:
registry: git.unjx.de
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build
uses: docker/build-push-action@v6
with:
load: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
V_GOLANG=${{ vars.V_GOLANG }}
V_NODE=${{ vars.V_NODE }}
V_ALPINE=${{ vars.V_ALPINE }}
- name: Push
run: docker push ${{ steps.meta.outputs.tags }}