-
Notifications
You must be signed in to change notification settings - Fork 17
53 lines (44 loc) · 1.44 KB
/
release.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
# Build and publish a release of OpenGamepadUI using semantic-release whenever
# changes are merged into main.
name: "Release"
on:
push:
branches:
- main
- v0.x
- v1.x
paths-ignore:
- README.md
- "docs/**"
env:
IMAGE_NAME: ghcr.io/shadowblip/opengamepadui-builder
# Jobs to run
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '18'
- name: Install Dependencies
run: npm install @semantic-release/exec @google/semantic-release-replace-plugin @semantic-release/git
- name: Save the signing key to sign update packs
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
run: |
echo "$SIGNING_KEY" > assets/crypto/keys/opengamepadui.key
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make release
- name: Trigger documentation generation
run: |
curl -L -X POST \
-H "Accept: application/vnd.github+json" \
-H 'Authorization: Bearer ${{ secrets.DISPATCH_KEY }}' \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/ShadowBlip/OpenGamepadUI/dispatches \
--data '{"event_type": "Trigger Workflow", "client_payload": { "repository": "'"$GITHUB_REPOSITORY"'" }}'