-
-
Notifications
You must be signed in to change notification settings - Fork 76
35 lines (30 loc) · 742 Bytes
/
auto-release.yml
File metadata and controls
35 lines (30 loc) · 742 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
name: "tagged-release"
on:
push:
tags:
- "v*"
jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
permissions:
contents: write
steps:
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: "Create zip"
run: |
make BRANCH=HEAD
- name: "Create release"
uses: softprops/action-gh-release@v2
with:
prerelease: false
generate_release_notes: true
append_body: true
body_path: .github/RELEASE/release-boilerplate.md
name: "mpvacious ${{github.ref_name}}"
files: |
.github/RELEASE/*.zip
.github/RELEASE/*.conf