Skip to content

Commit

Permalink
Remove env reference
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed Oct 10, 2024
1 parent 1dd8e3e commit affb6c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,32 +24,32 @@ jobs:
- name: Build android debug (arm32)
cache-name: export_template_debug_android_arm32
target: template_debug
sconsflags: ${{ env.SCONSFLAGS }} arch=arm32
sconsflags: arch=arm32

- name: Build android release (arm32)
cache-name: export_template_release_android_arm32
target: template_release
sconsflags: ${{ env.SCONSFLAGS }} arch=arm32
sconsflags: arch=arm32

- name: Build android debug (arm64)
cache-name: export_template_debug_android_arm64
target: template_debug
sconsflags: ${{ env.SCONSFLAGS }} arch=arm64
sconsflags: arch=arm64

- name: Build android release (arm64)
cache-name: export_template_release_android_arm64
target: template_release
sconsflags: ${{ env.SCONSFLAGS }} arch=arm64
sconsflags: arch=arm64

- name: Build android debug (x86_64)
cache-name: export_template_debug_android_x86_64
target: template_debug
sconsflags: ${{ env.SCONSFLAGS }} arch=x86_64
sconsflags: arch=x86_64

- name: Build android release (x86_64)
cache-name: export_template_release_android_x86_64
target: template_release
sconsflags: ${{ env.SCONSFLAGS }} arch=x86_64
sconsflags: arch=x86_64

steps:
- name: Maximize build space
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
- name: Build ios debug (arm64)
cache-name: export_template_debug_ios_arm64
target: template_debug
sconsflags: ${{ env.SCONSFLAGS }} arch=arm64
sconsflags: arch=arm64

- name: Build ios release (arm64)
cache-name: export_template_release_ios_arm64
target: template_release
sconsflags: ${{ env.SCONSFLAGS }} arch=arm64
sconsflags: arch=arm64

steps:
- name: Clone Godot Engine
Expand Down

0 comments on commit affb6c8

Please sign in to comment.