Skip to content

Commit

Permalink
Fix for android NDK setup to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl committed Jan 23, 2024
1 parent ad67b95 commit 2aaab7d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ jobs:
with:
go-version-file: "go.mod"

- name: Setup android NDK
run: |
wget -q --show-progress https://dl.google.com/android/repository/android-ndk-r26b-linux.zip
unzip -qq android-ndk-r26b-linux.zip
echo "$PWD/android-ndk-r26b/toolchains/llvm/prebuilt/linux-x86_64/bin" >> $GITHUB_PATH
- name: Increment version 📈
id: gen_tag
run: |
Expand Down Expand Up @@ -99,6 +93,12 @@ jobs:
# Set the new tag.
echo "tag=$new_version" >> $GITHUB_OUTPUT
- name: Setup android NDK
run: |
wget -q --show-progress https://dl.google.com/android/repository/android-ndk-r26b-linux.zip
unzip -qq android-ndk-r26b-linux.zip
echo "$PWD/android-ndk-r26b/toolchains/llvm/prebuilt/linux-x86_64/bin" >> $GITHUB_PATH
- name: Build Executables 🗄️ 🔃
run: |
mkdir -p bin
Expand Down

0 comments on commit 2aaab7d

Please sign in to comment.