Skip to content

Commit 85a5448

Browse files
committed
💚 add publish workflow
1 parent a3f875a commit 85a5448

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

.github/workflows/publish.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Dart CI
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
container:
11+
image: google/dart:latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Install Flutter
15+
uses: subosito/flutter-action@v1
16+
with:
17+
channel: 'stable'
18+
- name: Install dependencies
19+
run: flutter packages get
20+
- name: Code Formatting
21+
run: dartfmt -w .
22+
- name: Check Publish Warnings
23+
run: pub publish --dry-run
24+
- name: Publish Package
25+
run: pub publish -f

pub_login.sh

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# This script creates/updates credentials.json file which is used
2+
# to authorize publisher when publishing packages to pub.dev
3+
4+
# Checking whether the secrets are available as environment
5+
# variables or not.
6+
if [ -z "${PUB_DEV_PUBLISH_ACCESS_TOKEN}" ]; then
7+
echo "Missing PUB_DEV_PUBLISH_ACCESS_TOKEN environment variable"
8+
exit 1
9+
fi
10+
11+
if [ -z "${PUB_DEV_PUBLISH_REFRESH_TOKEN}" ]; then
12+
echo "Missing PUB_DEV_PUBLISH_REFRESH_TOKEN environment variable"
13+
exit 1
14+
fi
15+
16+
if [ -z "${PUB_DEV_PUBLISH_TOKEN_ENDPOINT}" ]; then
17+
echo "Missing PUB_DEV_PUBLISH_TOKEN_ENDPOINT environment variable"
18+
exit 1
19+
fi
20+
21+
if [ -z "${PUB_DEV_PUBLISH_EXPIRATION}" ]; then
22+
echo "Missing PUB_DEV_PUBLISH_EXPIRATION environment variable"
23+
exit 1
24+
fi
25+
26+
# Create credentials.json file.
27+
cat <<EOF >~/.pub-cache/credentials.json
28+
{
29+
"accessToken":"${PUB_DEV_PUBLISH_ACCESS_TOKEN}",
30+
"refreshToken":"${PUB_DEV_PUBLISH_REFRESH_TOKEN}",
31+
"tokenEndpoint":"${PUB_DEV_PUBLISH_TOKEN_ENDPOINT}",
32+
"scopes":["https://www.googleapis.com/auth/userinfo.email","openid"],
33+
"expiration":${PUB_DEV_PUBLISH_EXPIRATION}
34+
}
35+
EOF

0 commit comments

Comments
 (0)