Workflow Action for Docker Repo (#2)

Reviewed-on: #2
This commit is contained in:
kpohl 2024-11-03 17:57:37 +00:00
parent bde9a50767
commit 15ba3c060a

View File

@ -4,7 +4,7 @@ on:
tags: tags:
- '*' - '*'
jobs: jobs:
build: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: https://gitea.com/actions/checkout@master - uses: https://gitea.com/actions/checkout@master
@ -19,3 +19,26 @@ jobs:
with: with:
server_url: https://gitea.wpgcommunity.net server_url: https://gitea.wpgcommunity.net
files: 'server.zip' files: 'server.zip'
docker:
runs-on: ubuntu-latest
steps:
- uses: https://gitea.com/actions/checkout@master
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ vars.DOCKER_REPO }}/costhive
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
config-inline: |
[registry."${{ vars.DOCKER_REPO }}"]
http = true
insecure = true
- name: Build and push
uses: https://github.com/docker/build-push-action@v6
with:
push: true
context: .
tags: ${{ steps.meta.outputs.tags }}