Skip to content

Commit

Permalink
Merge pull request #110 from d3xt3r2909/automate_publishing
Browse files Browse the repository at this point in the history
fix it
  • Loading branch information
d3xt3r2909 committed Mar 22, 2024
2 parents 96e764c + b5fe751 commit b1cfabc
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'

jobs:
publish:
permissions:
id-token: write
runs-on: ubuntu-latest
environment: pub.dev
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-flutter
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Publish
run: dart pub publish --force
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- uses: ./.github/actions/setup-flutter
- name: Install dependencies
run: flutter pub get
- name: Publish
run: dart pub publish --force



0 comments on commit b1cfabc

Please sign in to comment.