mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-05-15 15:40:16 +00:00
Update build.yml
This commit is contained in:
parent
2cf778e309
commit
e95ab02a67
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
@ -3,7 +3,7 @@ name: Build
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build-android:
|
||||
build-android-armv7a:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
@ -15,11 +15,27 @@ jobs:
|
||||
chmod +x scripts/build-android-armv7a.sh
|
||||
./scripts/build-android-armv7a.sh
|
||||
|
||||
- name: Create Archive
|
||||
run: zip -r android-armv7a-build.zip build/
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: android-armv7a-bundle
|
||||
path: build/
|
||||
|
||||
|
||||
build-android-arm64:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build android-arm64
|
||||
run: |
|
||||
chmod +x scripts/build-android-arm64.sh
|
||||
./scripts/build-android-arm64.sh
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: android-armv7a-bundle
|
||||
path: android-armv7a-build.zip
|
||||
path: build/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user