generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
65 lines (55 loc) · 1.58 KB
/
release.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
60
61
62
63
64
65
name: Build or Release
on:
push:
branches:
- main
tags:
- v**
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
name: ${{ startsWith(github.ref, 'refs/heads/') && 'Build' || 'Release' }}
runs-on: ubuntu-latest
if: |
startsWith(github.ref, 'refs/tags/') ||
!startsWith(github.event.head_commit.message, 'chore(publish)')
env:
GITHUB_TOKEN: ${{ secrets.GitHub_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install deps
run: npm install -f
- name: Build
run: npm run build
- name: Create artifact
if: startsWith(github.ref, 'refs/heads/')
uses: actions/upload-artifact@v4
with:
name: arXiv-workflow-for-zotero
path: build/zotero-arxiv-workflow.xpi
- name: Lint code
if: startsWith(github.ref, 'refs/heads/')
run: npm run lint
- name: Release to GitHub
if: startsWith(github.ref, 'refs/tags/')
run: |
npm run release
sleep 1s
- name: Notify release
if: startsWith(github.ref, 'refs/tags/')
uses: apexskier/github-release-commenter@v1
continue-on-error: true
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
comment-template: |
:rocket: _This ticket has been resolved in {release_tag}. See {release_link} for release notes._