Snoweuph
868b058dd7
Some checks failed
Build Runner Go / build_go (push) Blocked by required conditions
Build Runner csharp / build_csharp (6) (push) Failing after 13s
Build Runner Godot / build_godot (4.2.2) (push) Failing after 14s
Build Runner csharp / build_csharp (8) (push) Failing after 14s
Build Runner Base / build_act (push) Failing after 18s
Build Runner Java / build_java (17) (push) Failing after 13s
Build Runner Java / build_java (21) (push) Failing after 13s
Build Runner Java / build_java (8) (push) Failing after 14s
Build Runner JS / build_lua (latest) (push) Failing after 12s
Build Runner Lua / build_lua (5.1) (push) Failing after 14s
Build Runner Lua / build_lua (5.2) (push) Failing after 13s
Build Runner Lua / build_lua (5.3) (push) Failing after 14s
Build Runner Lua / build_lua (5.4) (push) Failing after 13s
Build Runner Php / build_php (8.2) (push) Failing after 11s
Build Runner Php / build_php (8.3) (push) Failing after 10s
Build Runner Redot / build_redot (4.3) (push) Failing after 9s
34 lines
972 B
YAML
34 lines
972 B
YAML
name: "Build Runner Base"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
|
|
jobs:
|
|
build_act:
|
|
runs-on: 'docker'
|
|
container:
|
|
image: docker:27.5.1-alpine3.21
|
|
steps:
|
|
- name: Install Node
|
|
run: apk add nodejs
|
|
- 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 act base image
|
|
id: build_act_base
|
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
|
with:
|
|
context: "{{defaultContext}}:images/actions/act"
|
|
push: true
|
|
tags: |
|
|
git.euph.dev/actions/runner-basic:latest
|
|
git.euph.dev/actions/runner-basic:${{ forgejo.run_number }}
|