Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main to develop #458

Merged
merged 6 commits into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/prod-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Upload apk
uses: actions/upload-artifact@v4
with:
name: app-release.apk
name: apk
path: ./build/app/outputs/flutter-apk/app-release.apk

build-bundle:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Upload bundle
uses: actions/upload-artifact@v4
with:
name: app-release.aab
name: aab
path: ./build/app/outputs/bundle/release/app-release.aab

build-web:
Expand Down Expand Up @@ -162,18 +162,24 @@ jobs:
- name: Upload web
uses: actions/upload-artifact@v4
with:
name: web.zip
name: web
path: ./web.zip

create-release:
name: "create release 📦"
needs: [build-apk, build-bundle, build-web]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: ./artifacts

- name: View files
run: ls ./artifacts

- name: Get flutter version
id: flutter_version
Expand All @@ -195,6 +201,6 @@ jobs:
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
artifacts: |
./artifacts/app-release.apk,
./artifacts/app-release.aab,
./artifacts/web.zip
./artifacts/apk/app-release.apk,
./artifacts/aab/app-release.aab,
./artifacts/web/web.zip
Loading