-
Notifications
You must be signed in to change notification settings - Fork 1
78 lines (70 loc) · 2.27 KB
/
publish.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Publish
on:
workflow_dispatch:
inputs:
release_version:
description: "Version of this release"
required: true
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Cache 📦
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup ⬢
uses: actions/setup-node@v1
with:
node-version: 18
- name: Tag 🏷️
uses: actions/github-script@v5
id: create-tag
with:
github-token: ${{secrets.TEXTILEIO_MACHINE_ACCESS_TOKEN}}
script: |
await github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/${{ github.event.inputs.release_version }}',
sha: context.sha
})
- name: Version 👍
id: version-bump
uses: jaywcjlove/github-action-package@v1.3.0
with:
version: ${{ github.event.inputs.release_version }}
path: ~/ethereum/package.json
- name: Install 🔧
run: cd ethereum && npm install
- name: Conditional ✅
id: cond
uses: haya14busa/action-cond@v1
with:
cond: ${{ contains(github.event.inputs.release_version, '-') }}
if_true: "next"
if_false: "latest"
- name: Publish 📦
id: publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}
tag: ${{ steps.cond.outputs.value }}
package: ~/ethereum
access: public
check-version: true
- name: Release 🚀
if: steps.publish.outputs.type != 'none'
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.publish.outputs.version }}
generateReleaseNotes: true
prerelease: ${{ contains(steps.publish.outputs.type, 'pre') }}
token: ${{ secrets.GITHUB_TOKEN }}