-
-
Notifications
You must be signed in to change notification settings - Fork 25
40 lines (33 loc) · 948 Bytes
/
release.yml
File metadata and controls
40 lines (33 loc) · 948 Bytes
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
name: Release
on:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yml
with:
release: true
release:
name: Release
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v6
- name: Download artifacts
uses: actions/download-artifact@v8
- name: Create tag
uses: rickstaa/action-create-tag@v1
with:
tag: ${{ needs.build.outputs.version }}
- name: Create release
uses: softprops/action-gh-release@v2
with:
files: linux-enable-ir-emitter-*.tar.gz
tag_name: ${{ needs.build.outputs.version }}
fail_on_unmatched_files: true
draft: true
make_latest: true
body: |
## What's Changed
See [CHANGELOG.md](https://github.com/EmixamPP/linux-enable-ir-emitter/blob/master/CHANGELOG.md)
## Contributors
@EmixamPP