-
-
Notifications
You must be signed in to change notification settings - Fork 25
47 lines (35 loc) · 1.11 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
name: Release
on:
push:
branches:
- main
env:
EP_GH_IGNORE_TIME: true
jobs:
release:
name: Release
# specify the environment to select the right env variables
environment: build
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'chore(release)')"
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
# required to use our own personal access token
# we need to use a custom PAT as other workflows
# aren't triggered using secrets.GITHUB_TOKEN
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install libndi4_4.5.1-1_amd64.deb
run: wget https://github.com/Palakis/obs-ndi/releases/download/4.9.0/libndi4_4.5.1-1_amd64.deb && sudo dpkg -i libndi4_4.5.1-1_amd64.deb
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release