Skip to content

v0.3.0

v0.3.0 #1

Workflow file for this run

name: Publish Release
on:
release:
types: [published]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
- name: Install dependencies
run: flutter pub get
- name: Check Publish Warnings
run: dart pub publish --dry-run
- name: Publish Package
uses: k-paxian/dart-package-publisher@master
with:
credentialJson: ${{ secrets.PUB_CREDENTIALS }}
flutter: true
skipTests: true