diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index dcc3f88..6575430 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -2,7 +2,7 @@ name: release-nightly on: push: - branches: [ master ] + branches: [master] jobs: build-web: @@ -17,6 +17,11 @@ jobs: cache: true - run: flutter pub get - run: flutter build web + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: build-output-web + path: build/web build-apk: runs-on: ubuntu-latest steps: @@ -29,6 +34,11 @@ jobs: cache: true - run: flutter pub get - run: flutter build apk --split-per-abi + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: build-output-android + path: build/app/outputs/flutter-apk/*.apk build-exe: runs-on: windows-latest steps: @@ -40,4 +50,10 @@ jobs: channel: stable cache: true - run: flutter pub get - - run: flutter build window \ No newline at end of file + - run: flutter build windows + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: build-output-windows + path: build/windows +