-
-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (37 loc) · 1.16 KB
/
publish-packages.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
name: Publish UPM packages
on:
release:
types: [published]
workflow_dispatch:
env:
ORT_VERSION: 1.20.0
ORT_EXTENSIONS_VERSION: 0.12.0
# Dry-run on workflow_dispatch
NPM_OPTS: ${{ github.event_name == 'workflow_dispatch' && '--dry-run' || '' }}
jobs:
npm-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org'
- name: Cache .tmp folder
uses: actions/cache@v4
id: tmp-cache
with:
path: .tmp
key: tmp-ort${{ env.ORT_VERSION }}-ext${{ env.ORT_EXTENSIONS_VERSION }}-${{ hashFiles('scripts/*') }}
- name: Download ONNX libraries
run: |
./scripts/download-onnx-libs.sh ${{ env.ORT_VERSION }}
./scripts/download-onnx-extensions-libs.sh ${{ env.ORT_EXTENSIONS_VERSION }}
- name: Publish all NPM packages
run: |
for dir in com.github.asus4.*; do
cd ${{ github.workspace }}/$dir
cp ../README.md .
npm publish ${{ env.NPM_OPTS }}
done
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}