This commit is contained in:
commit
9bcfbe59c7
3 changed files with 97 additions and 0 deletions
28
.forgejo/workflows/build.yaml
Normal file
28
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: build mono
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
push:
|
||||
name: "yolks:mono_${{ matrix.tag }}"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
buildkitd-flags: --debug
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.styandco.dev
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
- uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./mono/${{ matrix.tag }}/Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: true
|
||||
tags: |
|
||||
git.styandco.dev/Torchlead/godot-docker:latest
|
||||
git.styandco.dev/Torchlead/godot-docker:4.4
|
Loading…
Add table
Add a link
Reference in a new issue