Skip to content

Merge pull request #162 from conceptadev/feat/create-of-methods-for-d… #2

Merge pull request #162 from conceptadev/feat/create-of-methods-for-d…

Merge pull request #162 from conceptadev/feat/create-of-methods-for-d… #2

Workflow file for this run

name: Publish to pub.dev
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- run: flutter --version
- run: flutter pub get
- uses: axel-op/dart-package-analyzer@v3
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
- run: flutter test
publish:
permissions:
id-token: write # Required for authentication using OIDC
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: flutter pub get
- name: Publish
run: dart pub publish --force