Move Setup
Some checks failed
Build Runner Go / build_go (push) Blocked by required conditions
Build Runner csharp / build_csharp (8) (push) Failing after 18s
Build Runner csharp / build_csharp (6) (push) Failing after 19s
Build Runner Java / build_java (17) (push) Failing after 19s
Build Runner Godot / build_godot (4.2.2) (push) Failing after 20s
Build Runner Base / build_act (push) Failing after 26s
Build Runner Java / build_java (21) (push) Failing after 15s
Build Runner Java / build_java (8) (push) Failing after 15s
Build Runner JS / build_lua (latest) (push) Failing after 15s
Build Runner Lua / build_lua (5.1) (push) Failing after 14s
Build Runner Lua / build_lua (5.2) (push) Failing after 14s
Build Runner Lua / build_lua (5.3) (push) Failing after 13s
Build Runner Lua / build_lua (5.4) (push) Failing after 14s
Build Runner Php / build_php (8.2) (push) Failing after 12s
Build Runner Php / build_php (8.3) (push) Failing after 8s
Build Runner Redot / build_redot (4.3) (push) Failing after 7s
Some checks failed
Build Runner Go / build_go (push) Blocked by required conditions
Build Runner csharp / build_csharp (8) (push) Failing after 18s
Build Runner csharp / build_csharp (6) (push) Failing after 19s
Build Runner Java / build_java (17) (push) Failing after 19s
Build Runner Godot / build_godot (4.2.2) (push) Failing after 20s
Build Runner Base / build_act (push) Failing after 26s
Build Runner Java / build_java (21) (push) Failing after 15s
Build Runner Java / build_java (8) (push) Failing after 15s
Build Runner JS / build_lua (latest) (push) Failing after 15s
Build Runner Lua / build_lua (5.1) (push) Failing after 14s
Build Runner Lua / build_lua (5.2) (push) Failing after 14s
Build Runner Lua / build_lua (5.3) (push) Failing after 13s
Build Runner Lua / build_lua (5.4) (push) Failing after 14s
Build Runner Php / build_php (8.2) (push) Failing after 12s
Build Runner Php / build_php (8.3) (push) Failing after 8s
Build Runner Redot / build_redot (4.3) (push) Failing after 7s
This commit is contained in:
parent
cdb8c9f688
commit
8e57523769
1 changed files with 10 additions and 8 deletions
|
@ -2,14 +2,14 @@ name: "Build Runner Base"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *'
|
- cron: "0 0 * * *"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'master'
|
- "master"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_act:
|
build_act:
|
||||||
runs-on: 'docker'
|
runs-on: "docker"
|
||||||
container:
|
container:
|
||||||
image: docker:27.5.1-alpine3.21
|
image: docker:27.5.1-alpine3.21
|
||||||
services:
|
services:
|
||||||
|
@ -17,23 +17,25 @@ jobs:
|
||||||
image: docker:27.5.1-dind-alpine3.21
|
image: docker:27.5.1-dind-alpine3.21
|
||||||
options: --privileged
|
options: --privileged
|
||||||
env:
|
env:
|
||||||
- DOCKER_HOST: "tcp://docker:2375"
|
DOCKER_HOST: tcp://docker:2375
|
||||||
steps:
|
steps:
|
||||||
- name: Install Node
|
- name: Install Node
|
||||||
run: apk add nodejs
|
run: apk add nodejs
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
uses: "https://git.euph.dev/actions/docker-setup-qemu@v3"
|
||||||
|
env:
|
||||||
|
DOCKER_HOST: tcp://docker:2375
|
||||||
- name: Setup Buildx
|
- name: Setup Buildx
|
||||||
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
|
uses: "https://git.euph.dev/actions/docker-setup-buildx@v3"
|
||||||
- name: Login to Registry
|
- name: Login to Registry
|
||||||
uses: 'https://git.euph.dev/actions/docker-login@v3'
|
uses: "https://git.euph.dev/actions/docker-login@v3"
|
||||||
with:
|
with:
|
||||||
registry: git.euph.dev
|
registry: git.euph.dev
|
||||||
username: ${{ secrets.DEPLOY_USER }}
|
username: ${{ secrets.DEPLOY_USER }}
|
||||||
password: ${{ secrets.DEPLOY_SECRET }}
|
password: ${{ secrets.DEPLOY_SECRET }}
|
||||||
- name: Build and push act base image
|
- name: Build and push act base image
|
||||||
id: build_act_base
|
id: build_act_base
|
||||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
uses: "https://git.euph.dev/actions/docker-build-push@v5"
|
||||||
with:
|
with:
|
||||||
context: "{{defaultContext}}:images/actions/act"
|
context: "{{defaultContext}}:images/actions/act"
|
||||||
push: true
|
push: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue