dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
585 B
25 lines
585 B
name: Publish to pub.dev |
|
|
|
on: |
|
push: |
|
tags: |
|
- 'v[0-9]+.[0-9]+.[0-9]+*' # Trigger this action when a version tag is pushed |
|
|
|
jobs: |
|
publish: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v2 |
|
|
|
- name: Setup Flutter environment |
|
uses: subosito/flutter-action@v1 |
|
with: |
|
flutter-version: '3.13.9' |
|
|
|
- name: Disable Flutter telemetry |
|
run: flutter --disable-telemetry |
|
|
|
- name: Publish to pub.dev |
|
run: flutter pub publish --force |
|
env: |
|
PUB_ACCESS_TOKEN: ${{ secrets.PUB_ACCESS_TOKEN }}
|
|
|