Skip to content

docs: update version number and chagelog #11

docs: update version number and chagelog

docs: update version number and chagelog #11

Workflow file for this run

name: Publish to pub.dev
on:
push:
tags:
# Must align with the tag-pattern configured on pub.dev.
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
publish:
name: Publish
timeout-minutes: 10
runs-on: ubuntu-latest
permissions:
id-token: write # Allows to publish to pub.dev without personal credentials
steps:
- name: Checkout
uses: actions/[email protected]
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.9'
channel: 'stable'
- name: Dart and Flutter Package Publisher
uses: k-paxian/[email protected]
with:
# (Required) Token from ~/.pub-cache/credentials.json. Use secrets.OAUTH_ACCESS_TOKEN
accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }}
# (Required) Token from ~/.pub-cache/credentials.json. Use secrets.OAUTH_REFRESH_TOKEN
refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }}
skipTests: true
format: true
force: false
# (Optional) Flutter branch to use, stable, master, main, dev, etc.
flutterBranch: stable