v5.29.2 #112
Workflow file for this run
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
# .github/workflows/publish.yml | |
name: Publish to pub.dev | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: 'v' | |
# Publish using the reusable workflow from dart-lang. | |
jobs: | |
publish-package: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Analyze code | |
run: flutter analyze | |
- name: Format code | |
run: dart format --fix . | |
- name: Check publish warnings | |
run: dart pub publish --dry-run | |
- name: Publish package | |
uses: k-paxian/[email protected] | |
with: | |
credentialJson: ${{ secrets.CREDENTIAL_SECRET }} | |
flutter: true | |
skipTests: true | |
- name: Update nylo.dev | |
uses: fjogeleit/http-request-action@v1 | |
with: | |
url: 'https://nylo.dev/api/github/actions/framework/version' | |
method: 'POST' | |
customHeaders: '{"Content-Type": "application/json", "X-GH-API-KEY": "${{ secrets.NYLO_API_GH_SECRET }}"}' | |
data: '{"version": "${{ github.ref_name }}"}' |