This commit is contained in:
parent
562834ca03
commit
57b366153a
3 changed files with 4 additions and 28 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -144,19 +144,19 @@ jobs:
|
||||||
buildToolsVersion: 35.0.0
|
buildToolsVersion: 35.0.0
|
||||||
|
|
||||||
- name: Upload Signed APK
|
- name: Upload Signed APK
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: signed-apk
|
name: signed-apk
|
||||||
path: ${{ steps.sign_apk.outputs.signedFiles }}
|
path: ${{ steps.sign_apk.outputs.signedFiles }}
|
||||||
|
|
||||||
- name: Upload Signed AAB
|
- name: Upload Signed AAB
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: signed-aab
|
name: signed-aab
|
||||||
path: ${{ steps.sign_aab.outputs.signedFiles }}
|
path: ${{ steps.sign_aab.outputs.signedFiles }}
|
||||||
|
|
||||||
- name: Upload Debug Symbols
|
- name: Upload Debug Symbols
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: debug-symbols
|
name: debug-symbols
|
||||||
path: app-release/app/build/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/*
|
path: app-release/app/build/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/*
|
||||||
|
|
24
.github/workflows/test.yml
vendored
24
.github/workflows/test.yml
vendored
|
@ -1,24 +0,0 @@
|
||||||
name: Test Artifact Upload
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test-upload:
|
|
||||||
runs-on: docker
|
|
||||||
container: ghcr.io/catthehacker/ubuntu:full-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Create test file
|
|
||||||
run: |
|
|
||||||
dd if=/dev/urandom of=test.bin bs=1M count=20
|
|
||||||
ls -lh test.bin
|
|
||||||
|
|
||||||
- name: Upload test file
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: test-artifact
|
|
||||||
path: test.bin
|
|
Loading…
Reference in a new issue