Fix wrong runs-on label
This commit is contained in:
parent
79e2014976
commit
b9844a55ac
1 changed files with 12 additions and 8 deletions
|
|
@ -11,14 +11,15 @@ env:
|
|||
jobs:
|
||||
export-windows:
|
||||
name: Windows Export
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: docker
|
||||
container:
|
||||
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
- name: Windows Build
|
||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
||||
run: |
|
||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
||||
mkdir -v -p ~/.config/
|
||||
|
|
@ -36,14 +37,15 @@ jobs:
|
|||
|
||||
export-linux:
|
||||
name: Linux Export
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: docker
|
||||
container:
|
||||
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
- name: Linux Build
|
||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
||||
run: |
|
||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
||||
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
|
||||
|
|
@ -59,14 +61,15 @@ jobs:
|
|||
|
||||
export-web:
|
||||
name: Web Export
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: docker
|
||||
container:
|
||||
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
- name: Web Build
|
||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
||||
run: |
|
||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
||||
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
|
||||
|
|
@ -82,14 +85,15 @@ jobs:
|
|||
|
||||
export-mac:
|
||||
name: Mac Export
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: docker
|
||||
container:
|
||||
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
- name: Mac Build
|
||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
||||
run: |
|
||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
||||
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue