34 lines
No EOL
795 B
YAML
34 lines
No EOL
795 B
YAML
name: Build Godot
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
push:
|
|
name: "Build Godot"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Docker
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
buildkitd-flags: --debug
|
|
|
|
- name: Login to Docker
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.styandco.dev
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secret.DOCKER_LOGIN }}
|
|
|
|
- uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64
|
|
push: true
|
|
tags: |
|
|
git.styandco.dev/torchlead/godot-docker:latest
|
|
git.styandco.dev/torchlead/godot-docker:4.4 |