-
Notifications
You must be signed in to change notification settings - Fork 495
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
李卓原
committed
Jun 1, 2023
1 parent
a27e646
commit 46198af
Showing
11 changed files
with
103 additions
and
37 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
# .github/workflows/publish.yml | ||
name: Publish to pub.dev | ||
name: Publish to Pub.dev | ||
|
||
on: | ||
push: | ||
tags: | ||
# must align with the tag-pattern configured on pub.dev, often just replace | ||
# with [0-9]+.[0-9]+.[0-9]+* | ||
- 'v[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: 'v' | ||
# If you prefer tags like '1.2.3', without the 'v' prefix, then use: | ||
# - '[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: '' | ||
# If your repository contains multiple packages consider a pattern like: | ||
# - 'my_package_name-v[0-9]+.[0-9]+.[0-9]+*' | ||
# 流程触发时机,当有标签创建时触发,如 v1.0.0。当然也可以选择别的触发时机,如 push,release 等 | ||
on: create | ||
|
||
# Publish using the reusable workflow from dart-lang. | ||
jobs: | ||
publish: | ||
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1 | ||
# with: | ||
# working-directory: path/to/package/within/repository | ||
publishing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# 拉去仓库代码 | ||
- name: "Checkout" | ||
uses: actions/checkout@v2 | ||
# 发布插件 | ||
- name: Dart and Flutter Package Publisher | ||
uses: k-paxian/dart-package-publisher@v1.2 | ||
with: | ||
# 设置发布插件需要的 Token | ||
accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }} | ||
refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# 5.8.4 | ||
- bug fix | ||
|
||
# 5.8.3 | ||
- Adapt to flutter3.10 | ||
|
||
|
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# | ||
# NOTE: This podspec is NOT to be published. It is only used as a local source! | ||
# This podspec is NOT to be published. It is only used as a local source! | ||
# This is a generated file; do not edit or check into version control. | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'Flutter' | ||
s.version = '1.0.0' | ||
s.summary = 'High-performance, high-fidelity mobile apps.' | ||
s.description = <<-DESC | ||
Flutter provides an easy and productive way to build and deploy high-performance mobile apps for Android and iOS. | ||
DESC | ||
s.homepage = 'https://flutter.io' | ||
s.license = { :type => 'MIT' } | ||
s.summary = 'A UI toolkit for beautiful and fast apps.' | ||
s.homepage = 'https://flutter.dev' | ||
s.license = { :type => 'BSD' } | ||
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } | ||
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } | ||
s.ios.deployment_target = '8.0' | ||
s.vendored_frameworks = 'Flutter.framework' | ||
s.ios.deployment_target = '11.0' | ||
# Framework linking is handled by Flutter tooling, not CocoaPods. | ||
# Add a placeholder to satisfy `s.dependency 'Flutter'` plugin podspecs. | ||
s.vendored_frameworks = 'path/to/nothing' | ||
end |
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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 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 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