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:
parent
830fec0c29
commit
6a852332de
2 changed files with 11 additions and 0 deletions
1
.github/workflows/build-mobile.yml
vendored
1
.github/workflows/build-mobile.yml
vendored
|
@ -2,6 +2,7 @@ name: Build Mobile
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
|
|
10
.github/workflows/prepare-release.yml
vendored
10
.github/workflows/prepare-release.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue