Skip to content

Commit 94a3535

Browse files
authored
Merge branch 'master' into simple-infos
2 parents 6a036b3 + a5224aa commit 94a3535

File tree

6 files changed

+26
-38
lines changed

6 files changed

+26
-38
lines changed

.github/workflows/release-manual.yml

Lines changed: 22 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,45 @@
1+
# Trigger this workflow to manually create a release of the flutter package.
2+
13
name: release-manual
24
on:
3-
release:
4-
types:
5-
- published
5+
workflow_dispatch:
6+
inputs:
7+
ref:
8+
description: 'Reference (tag / SHA):'
9+
required: true
10+
default: ''
11+
package:
12+
description: 'Package'
13+
required: true
14+
default: ''
15+
type: choice
16+
options:
17+
- dart
18+
- flutter
619
jobs:
7-
# dry-run:
8-
# runs-on: ubuntu-latest
9-
# outputs:
10-
# dart_dry_run_success: ${{ steps.try-dart.outputs.success }}
11-
# flutter_dry_run_success: ${{ steps.try-flutter.outputs.success }}
12-
# steps:
13-
# - name: Checkout code
14-
# uses: actions/checkout@v3
15-
# - name: Dry run dart package
16-
# uses: k-paxian/[email protected]
17-
# id: try-dart
18-
# with:
19-
# accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
20-
# refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
21-
# relativePath: packages/dart
22-
# format: true
23-
# dryRunOnly: true
24-
# - name: Dry run flutter package
25-
# uses: k-paxian/[email protected]
26-
# id: try-flutter
27-
# with:
28-
# accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
29-
# refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
30-
# relativePath: packages/flutter
31-
# flutter: true
32-
# format: true
33-
# dryRunOnly: true
3420
release:
3521
runs-on: ubuntu-latest
36-
# needs: dry-run
37-
# if: needs.dry-run.outputs.dart_dry_run_success && needs.dry-run.outputs.flutter_dry_run_success
3822
steps:
3923
- name: Checkout code
4024
uses: actions/checkout@v3
25+
with:
26+
ref: ${{ github.event.inputs.ref }}
4127
- name: Publish dart package
28+
if: github.event.inputs.package == 'dart'
4229
uses: k-paxian/[email protected]
4330
with:
4431
accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
4532
refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
4633
relativePath: packages/dart
4734
format: true
48-
dryRunOnly: true
35+
dryRunOnly: false
4936
- name: Publish flutter package
37+
if: github.event.inputs.package == 'flutter'
5038
uses: k-paxian/[email protected]
5139
with:
5240
accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
5341
refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
5442
relativePath: packages/flutter
5543
flutter: true
5644
format: true
57-
dryRunOnly: true
45+
dryRunOnly: false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ unlinked_spec.ds
103103
# macOS
104104
**/macos/Flutter/GeneratedPluginRegistrant.swift
105105

106+
# Linux
107+
**/linux/flutter/ephemeral
108+
106109
# Coverage
107110
coverage/
108111
lcov.info

packages/flutter/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [3.1.1](https://github.com/parse-community/Parse-SDK-Flutter/compare/V3.1.0...3.1.1) (2022-05-03)
1+
## [3.1.1](https://github.com/parse-community/Parse-SDK-Flutter/compare/V3.1.0...flutter-3.1.1) (2022-05-29)
22

33
### Bug Fixes
44

packages/flutter/example/linux/flutter/ephemeral/.plugin_symlinks/connectivity_plus_linux

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/flutter/example/linux/flutter/ephemeral/.plugin_symlinks/path_provider_linux

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/flutter/example/linux/flutter/ephemeral/.plugin_symlinks/shared_preferences_linux

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)