Skip to content

Commit

Permalink
Fix upload problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kebekus committed Nov 16, 2023
1 parent a2bec15 commit fd224b6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install Qt for Desktop
Expand Down Expand Up @@ -48,10 +49,10 @@ jobs:
cmake --build build
cmake --build build --target apk
cp build/src/android-build/build/outputs/apk/debug/android-build-debug.apk addTimes-android-arm64v8a.apk
- uses: pyTooling/Actions/releaser@r0
- name: Upload artifacts
uses: pyTooling/Actions/releaser@r0
with:
tag: developerBuilds
rm: true
token: ${{ secrets.GITHUB_TOKEN }}
files: |
addTimes-android-arm64v8a.apk
8 changes: 5 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install Qt
Expand All @@ -36,10 +37,11 @@ jobs:
- name: Package
run: |
linuxdeploy-x86_64.AppImage --appdir app --output appimage
- uses: pyTooling/Actions/releaser@r0
ls
- name: Upload artifacts
uses: pyTooling/Actions/releaser@r0
with:
tag: developerBuilds
rm: true
token: ${{ secrets.GITHUB_TOKEN }}
files: |
*mage

0 comments on commit fd224b6

Please sign in to comment.