Skip to content

Commit a9b901c

Browse files
committed
fix workflow
1 parent 0fc17e0 commit a9b901c

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.github/workflows/build_apk.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
branches:
55
- '**'
6+
permissions:
7+
contents: write
68
jobs:
79
apk-dev:
810
name: Build APK (dev)
@@ -201,8 +203,6 @@ jobs:
201203
needs: [apk-dev, apk-main-flavors]
202204
if: github.ref == 'refs/heads/main'
203205
runs-on: ubuntu-latest
204-
permissions:
205-
contents: write
206206
steps:
207207
- name: Create Release
208208
id: create_release
@@ -216,12 +216,14 @@ jobs:
216216
token: ${{ secrets.GITHUB_TOKEN }}
217217
- name: Download all APKs from build
218218
uses: actions/download-artifact@v4
219+
with:
220+
path: apks
219221
- name: Upload all APKs to release
220222
run: |
221223
# Find all APK files in the artifacts directory structure
222-
find artifacts -name "*.apk" -type f | while read apk_file; do
224+
find apks -name "*.apk" -type f | while read apk_file; do
223225
echo "Uploading $apk_file to release..."
224226
gh release upload "${{ needs.apk-dev.outputs.new_tag }}" "$apk_file" --clobber
225227
done
226228
env:
227-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
229+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:width="108dp"
3+
android:height="108dp"
4+
android:viewportWidth="108"
5+
android:viewportHeight="108">
6+
7+
<!-- AGiXT "X" logo mark -->
8+
<!-- First diagonal of X -->
9+
<path
10+
android:fillColor="#FFFFFF"
11+
android:pathData="M34,34L50,54L34,74L42,74L54,58L66,74L74,74L58,54L74,34L66,34L54,50L42,34Z"/>
12+
13+
<!-- Stylized "T" bar integrated with X -->
14+
<path
15+
android:fillColor="#FFFFFF"
16+
android:pathData="M40,30L68,30L68,36L40,36Z"/>
17+
</vector>

0 commit comments

Comments
 (0)