Implement expandable text #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Publish Package | |
on: | |
release: [published] | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Flutter | |
uses: subosito/flutter-action@v1 | |
with: | |
flutter-version: '1.9.1+hotfix.6' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Analyze | |
run: flutter analyze | |
- name: Run tests | |
run: flutter test | |
- name: Setup Pub Credentials | |
shell: bash | |
env: | |
PUB_DEV_PUBLISH_ACCESS_TOKEN: ${{ secrets.PUB_DEV_PUBLISH_ACCESS_TOKEN }} | |
PUB_DEV_PUBLISH_REFRESH_TOKEN: ${{ secrets.PUB_DEV_PUBLISH_REFRESH_TOKEN }} | |
PUB_DEV_PUBLISH_TOKEN_ENDPOINT: ${{ secrets.PUB_DEV_PUBLISH_TOKEN_ENDPOINT }} | |
PUB_DEV_PUBLISH_EXPIRATION: ${{ secrets.PUB_DEV_PUBLISH_EXPIRATION }} | |
run: | | |
sh ./pub_login.sh | |
- name: Check Publish Warnings | |
run: pub publish --dry-run | |
- name: Publish Package | |
run: pub publish -f |