-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (43 loc) · 1.52 KB
/
build-javascript.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
name: Build Javascript/Typescript
on:
push:
release:
types: [published]
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '21'
registry-url: 'https://npm.pkg.github.com'
- name: Build
run: bash build-javascript.sh
- name: Prepare for upload
run: |
mv build/javascript/openagents-*-proto-*.tgz build/javascript/openagents_grpc_proto-JAVASCRIPT.tgz
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: dist-javascript
path: build/javascript/*.tgz
- name: Upload release asset
if: github.event_name == 'release'
uses: softprops/action-gh-release@v1
with:
files: build/javascript/openagents_grpc_proto-JAVASCRIPT.tgz
- name: Publish
if: github.event_name == 'release'
run: |
cd build/javascript
echo "Rename package to ${{ github.repository_owner }}/${{github.event.repository.name}} for github package registry"
sed -i 's/"name": "openagents-grpc-proto"/"name": "@${{ github.repository_owner }}\/${{github.event.repository.name}}"/g' package.json
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc
npm publish --registry https://npm.pkg.github.com --access public
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}