runner-images/.forgejo/workflows/go.yml
Snoweuph ac0e6b954e
Some checks failed
Build Runner Php / build_php (8.3) (push) Failing after 1s
Build Runner Redot / build_redot (4.3) (push) Failing after 1s
Build Runner Base / build_act (push) Failing after 1m8s
Build Runner csharp / build_csharp (6) (push) Failing after 1m16s
Build Runner csharp / build_csharp (8) (push) Failing after 1m19s
Build Runner Go / build_go (push) Failing after 1m18s
Build Runner Godot / build_godot (4.2.2) (push) Failing after 1m24s
Build Runner Java / build_java (17) (push) Failing after 1m25s
Build Runner Java / build_java (21) (push) Failing after 1m25s
Build Runner Java / build_java (8) (push) Failing after 1m23s
Build Runner JS / build_lua (latest) (push) Failing after 1m24s
Build Runner Lua / build_lua (5.1) (push) Failing after 1m22s
Build Runner Lua / build_lua (5.2) (push) Failing after 1m20s
Build Runner Lua / build_lua (5.3) (push) Failing after 1m20s
Build Runner Lua / build_lua (5.4) (push) Failing after 1m18s
Build Runner Php / build_php (8.2) (push) Failing after 1m17s
Add Redot
2025-01-29 14:12:42 +01:00

34 lines
1 KiB
YAML

name: Build Runner Go
on:
schedule:
- cron: '0 1 * * *'
push:
branches:
- 'master'
jobs:
build_go:
runs-on: 'priviliged'
steps:
- name: Install Docker
run: |
rm $(which docker) && curl -fsSL https://get.docker.com | sh
- name: Set up QEMU
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
- name: Setup Buildx
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
- name: Login to Registry
uses: 'https://git.euph.dev/actions/docker-login@v3'
with:
registry: git.euph.dev
username: ${{ secrets.DEPLOY_USER }}
password: ${{ secrets.DEPLOY_SECRET }}
- name: Build and push Go image
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
with:
context: "{{defaultContext}}:images/actions/go"
push: true
tags: |
git.euph.dev/actions/runner-go:latest
git.euph.dev/actions/runner-go:${{ forgejo.run_number }}