Skip to content

flutter: publish 0.2.0 #3

flutter: publish 0.2.0

flutter: publish 0.2.0 #3

# .github/workflows/publish.yml
name: Publish to pub.dev
on: [push, workflow_dispatch]
jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./ezlog_flutter
steps:
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.0
- name: Install dependencies
run: flutter pub get
# Here you can insert custom steps you need
# - run: dart tool/generate-code.dart
- name: Publish
run: flutter pub publish --force