-
Notifications
You must be signed in to change notification settings - Fork 9
55 lines (48 loc) · 1.26 KB
/
release.yml
File metadata and controls
55 lines (48 loc) · 1.26 KB
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
name: release
on:
push:
tags:
- 'v*.*.*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- uses: purescript-contrib/setup-purescript@main
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('./**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache PureScript dependencies
uses: actions/cache@v2
with:
key: ${{ runner.os }}-spago-${{ hashFiles('./**/*.dhall') }}
path: |
.spago
output
- name: Build
run: |
npm ci
spago install
npm run build
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
dist/docs-search-app.js
dist/purescript-docs-search.cjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to NPM
shell: bash
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_API_TOKEN }}
run: |
mv ci-npmrc.txt .npmrc
npm ci
npm publish --non-interactive --access public