-
Notifications
You must be signed in to change notification settings - Fork 438
59 lines (56 loc) · 1.58 KB
/
build.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
59
name: Build Packages
on:
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
github-release:
name: Github Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- uses: oven-sh/setup-bun@v1
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@trustwallet'
- name: Generate version
id: get-next-version
run: |
bun install --frozen-lockfile
bun run build:version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set output
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
- name: build packages
run: |
bun install
bun run build:packages
bun run test
bun run rename ${{ steps.get-next-version.outputs.new-release-version }}
bun run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.get-next-version.outputs.new-release-version }}
release_name:
Release ${{ steps.get-next-version.outputs.new-release-version }}
body: |
New Release 🚀
draft: false
prerelease: true
permissions:
actions: write
contents: write
deployments: write
packages: write