Skip to content

Commit

Permalink
🧹 Cleaned up the file to merge into beta (Currently android build fai…
Browse files Browse the repository at this point in the history
…ls due to unknown reasons)
  • Loading branch information
Ranger-NF committed Aug 24, 2024
1 parent fa04325 commit 4fd1595
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/godot-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,17 @@ env:

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: actions-test
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
export-linux:
name: Linux export

container:
image: barichello/godot-ci:4.2.2
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -37,8 +33,7 @@ jobs:
- name: Adding env file
run: |
touch secrets.env
echo ${{ secrets.SW_API_KEY }} >> .env
echo ${{ secrets.SW_API_KEY }} >> secrets.env
- name: Linux release build
run: |
Expand All @@ -51,12 +46,11 @@ jobs:
name: linux
path: build/linux

export-android:
export-android: # Currently fails
name: Android Export

container:
image: barichello/godot-ci:4.2.2
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -85,8 +79,7 @@ jobs:

- name: Adding env file
run: |
touch secrets.env
echo ${{ secrets.SW_API_KEY }} >> .env
echo ${{ secrets.SW_API_KEY }} >> secrets.env
- name: Adding keystore
env:
Expand Down Expand Up @@ -120,11 +113,16 @@ jobs:
uses: actions/checkout@v4
with:
lfs: true

- name: Setup
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
- name: Adding env file
run: |
echo ${{ secrets.SW_API_KEY }} >> secrets.env
- name: Web release build
run: |
mkdir -v -p build/web
Expand Down

0 comments on commit 4fd1595

Please sign in to comment.