Skip to content

Bump go_router from 14.2.7 to 14.6.3 #69

Bump go_router from 14.2.7 to 14.6.3

Bump go_router from 14.2.7 to 14.6.3 #69

Workflow file for this run

name: Build Flutter App
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.24.1'
- name: Install project dependencies
run: flutter config --no-analytics && flutter pub get
- name: Enable windows build
run: flutter config --enable-windows-desktop
- name: Build artifacts
run: flutter build windows --release
- name: Upload Release Artifact
uses: actions/upload-artifact@v4
with:
name: WorklogAssistant-windows-${{ github.run_number}}
path: build/windows/x64/runner/Release
- name: Zip files
if: startsWith(github.ref, 'refs/tags/')
run: Compress-Archive -Path build/windows/x64/runner/Release/* -Destination WorklogAssistant-windows-${{ github.ref_name}}.zip
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
WorklogAssistant-windows-${{ github.ref_name}}.zip
token: ${{ secrets.GITHUB_TOKEN }}
name: "Release ${{ github.ref_name }}"