From 97ea1890cd8f68b66cdb83d778e8bcdbb66bc527 Mon Sep 17 00:00:00 2001 From: Yann Date: Wed, 3 Apr 2024 11:59:52 -0300 Subject: [PATCH] Update publish workflow to include Flutter dependencies and force publish --- .github/workflows/publish.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 752411d..b8f2e09 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,4 +11,13 @@ jobs: publish: permissions: id-token: write - uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: dart-lang/setup-dart@v1 + - name: Install dependencies + run: flutter pub get + # Here you can insert custom steps you need + # - run: dart tool/generate-code.dart + - name: Publish + run: dart pub publish --force \ No newline at end of file