1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 22:51:59 +00:00

feat(build): Include apk in prepare-release flow (#1496)

This commit is contained in:
bo0tzz 2023-01-31 16:59:37 +01:00 committed by GitHub
parent 830fec0c29
commit 6a852332de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@ name: Build Mobile
on:
workflow_dispatch:
workflow_call:
pull_request:
push:
branches: [main]

View file

@ -18,8 +18,12 @@ on:
type: boolean
jobs:
build_mobile:
uses: ./.github/workflows/build-mobile.yml
tag_release:
runs-on: ubuntu-latest
needs: build_mobile
steps:
- name: Checkout
@ -38,6 +42,11 @@ jobs:
message: "Version ${{ env.IMMICH_VERSION }}"
tag: ${{ env.IMMICH_VERSION }}
push: true
- name: Download APK
uses: actions/download-artifact@v3
with:
name: release-apk-signed
- name: Create draft release
uses: softprops/action-gh-release@v1
@ -49,3 +58,4 @@ jobs:
files: |
docker/docker-compose.yml
docker/example.env
*.apk