Skip to content

.github/workflows/publish.yml #21

.github/workflows/publish.yml

.github/workflows/publish.yml #21

Workflow file for this run

on:
release:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.3.0'
- name: Install dependencies
run: flutter pub get
- name: Check Publish Warnings
run: dart pub publish --dry-run
- name: Publish
uses: k-paxian/dart-package-publisher@v1.5.1
with:
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
flutter: true
skipTests: true