-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (35 loc) · 1002 Bytes
/
publish.yml
File metadata and controls
46 lines (35 loc) · 1002 Bytes
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
name: publish
on:
release:
types: [published]
permissions:
contents: read
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org/
cache: yarn
- name: Prepare config
run: cp contrib/emr-config/config.local.js contrib/emr-config/config.js
- name: Install deps
run: yarn install
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- name: Extract Lingui messages
run: yarn extract
- name: Compile Lingui catalogs
run: yarn compile
- name: Build package
run: yarn build:lib
- name: Allow registry publish
run: npm pkg delete private
- name: Publish package
run: npm publish --ignore-scripts --access public --tag latest --provenance