-
Notifications
You must be signed in to change notification settings - Fork 30
42 lines (37 loc) · 1.14 KB
/
publish.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
name: Publish
on:
release:
types: [published]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Replace symlinks before publish
run: ./scripts/replace_symlinks_before_publish.sh
- name: Publish agent_dart
uses: k-paxian/dart-package-publisher@master
with:
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
force: true
relativePath: packages/agent_dart
skipTests: true
suppressBuildRunner: true
- name: Publish agent_dart_base
uses: k-paxian/dart-package-publisher@master
with:
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
force: true
relativePath: packages/agent_dart_base
skipTests: true
suppressBuildRunner: true
- name: Publish agent_dart_ffi
uses: k-paxian/dart-package-publisher@master
with:
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
force: true
relativePath: packages/agent_dart_ffi
skipTests: true
suppressBuildRunner: true