-
-
Notifications
You must be signed in to change notification settings - Fork 26
35 lines (28 loc) · 663 Bytes
/
release.yml
File metadata and controls
35 lines (28 loc) · 663 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
# Publish a new Release
name: Release
on:
push:
tags: ['[0-9]+.[0-9]+.[0-9]+*']
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
# ================================
# CHECKOUT
# ================================
- name: Checkout git tag
uses: actions/checkout@v4
# ================================
# CREATE RELEASE
# ================================
- name: Create Release
uses: softprops/action-gh-release@v2
with:
preserve_order: true
files: |
src/exceptions4c.h
src/exceptions4c.c
LICENSE
NOTICE
CHANGELOG.md