-
-
Notifications
You must be signed in to change notification settings - Fork 34
101 lines (83 loc) · 2.77 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: Flutter Build & Test
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
outputs:
version: ${{ steps.properties.outputs.version }}
steps:
# Check out current repository
- name: Fetch sources
uses: actions/[email protected]
# Set environment variables
- name: Export Properties
id: properties
shell: bash
run: |
PUBSPEC_FILE="${GITHUB_WORKSPACE}/pubspec.yaml"
VERSION="$(yq e '.version' $PUBSPEC_FILE)"
echo "Current version is $VERSION"
echo "::set-output name=version::$VERSION"
# Install Flutter
- name: Install Flutter
uses: subosito/[email protected]
# Get Flutter packages
- name: Get packages
run: flutter pub get
# Run Flutter tests
- name: Test app
run: flutter test --coverage
# Send test report to Codecov
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage/lcov.info
prePublish:
name: Pre-publish
needs: build
runs-on: ubuntu-latest
steps:
# Check out current repository
- name: Fetch sources
uses: actions/[email protected]
# Install Flutter
- name: Install Flutter
uses: subosito/[email protected]
# Run package publish dry-run
- name: Dry-run package publish
uses: ./.github/actions/pub-dev-publish
with:
credentials: ${{ secrets.CREDENTIALS_JSON }}
dry_run: true
# Prepare a draft release for GitHub Releases page for the manual verification
# If accepted and published, release workflow would be triggered
releaseDraft:
name: Release Draft
if: github.event_name != 'pull_request'
needs: [build, prePublish]
runs-on: ubuntu-latest
steps:
# Check out current repository
- name: Fetch Sources
uses: actions/[email protected]
# Remove old release drafts by using the curl request for the available releases with draft flag
- name: Remove Old Release Drafts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh api repos/{owner}/{repo}/releases \
--jq '.[] | select(.draft == true) | .id' \
| xargs -I '{}' gh api -X DELETE repos/{owner}/{repo}/releases/{}
# Create new release draft - which is not publicly visible and requires manual acceptance
- name: Create Release Draft
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create v${{ needs.build.outputs.version }} \
--draft \
--title "v${{ needs.build.outputs.version }}" \