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:
|
jobs:
|
||||||
export-windows:
|
export-windows:
|
||||||
name: Windows Export
|
name: Windows Export
|
||||||
runs-on: ubuntu-20.04
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- name: Windows Build
|
- name: Windows Build
|
||||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
|
||||||
run: |
|
run: |
|
||||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
mkdir -v -p ~/.local/share/godot/export_templates/
|
||||||
mkdir -v -p ~/.config/
|
mkdir -v -p ~/.config/
|
||||||
|
|
@ -36,14 +37,15 @@ jobs:
|
||||||
|
|
||||||
export-linux:
|
export-linux:
|
||||||
name: Linux Export
|
name: Linux Export
|
||||||
runs-on: ubuntu-20.04
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- name: Linux Build
|
- name: Linux Build
|
||||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
|
||||||
run: |
|
run: |
|
||||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
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
|
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:
|
export-web:
|
||||||
name: Web Export
|
name: Web Export
|
||||||
runs-on: ubuntu-20.04
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- name: Web Build
|
- name: Web Build
|
||||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
|
||||||
run: |
|
run: |
|
||||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
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
|
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:
|
export-mac:
|
||||||
name: Mac Export
|
name: Mac Export
|
||||||
runs-on: ubuntu-20.04
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: git.antonio-da.dev/antoniodell/godot-ci:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- name: Mac Build
|
- name: Mac Build
|
||||||
uses: https://git.antonio-da.dev/antoniodell/godot-ci@main
|
|
||||||
run: |
|
run: |
|
||||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
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
|
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