-
Notifications
You must be signed in to change notification settings - Fork 3
58 lines (48 loc) · 1.47 KB
/
workflow_deploy.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
name: deploy
on:
push:
tags:
- "v*"
jobs:
geography:
name: 🌍 Geography
if: ${{ github.ref_type == 'tag' && endsWith(github.ref_name, '-geography') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: 🚀 Publish geography
uses: k-paxian/dart-package-publisher@v1.6
with:
accessToken: ''
refreshToken: ''
credentialJson: ${{secrets.PUB_DEV_CREDENTIALS}}
relativePath: geography
cobertura:
name: ⛱ Cobertura
if: ${{ github.ref_type == 'tag' && endsWith(github.ref_name, '-cobertura') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- name: 🚀 Publish cobertura
uses: k-paxian/dart-package-publisher@v1.6
with:
accessToken: ''
refreshToken: ''
credentialJson: ${{secrets.PUB_DEV_CREDENTIALS}}
relativePath: cobertura
dynamo_json:
name: 📇 DynamoJson
if: ${{ github.ref_type == 'tag' && endsWith(github.ref_name, '-dynamo_json') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- name: 🚀 Publish DynamoJson
uses: k-paxian/dart-package-publisher@v1.6
with:
accessToken: ''
refreshToken: ''
credentialJson: ${{secrets.PUB_DEV_CREDENTIALS}}
relativePath: dynamo_json