-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (53 loc) · 1.62 KB
/
Copy pathnode.js.yml
File metadata and controls
62 lines (53 loc) · 1.62 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
56
57
58
59
60
name: Release
on:
push:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run build
- name: Run hacs validation
uses: hacs/action@22.5.0
with:
category: "plugin"
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/*.js
- name: release
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request'
uses: actions/github-script@v2
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const fs = require('fs').promises;
const path = require('path');
console.log('environment', process.versions);
const { repo: { owner, repo }, sha, ref } = context;
console.log({ owner, repo, sha, ref });
const name = ref.replace('refs/tags/', '');
const release = await github.repos.createRelease({
owner, repo, name,
tag_name: name,
draft: true,
target_commitish: sha
});
console.log('created release', { release });
const files = ['./dist/utility-cards.js', './README.md'];
for (const file of files) {
console.log('uploading', file);
await github.repos.uploadReleaseAsset({
owner, repo,
release_id: release.data.id,
name: path.basename(file),
data: await fs.readFile(`./${file}`)
});
}