-
Notifications
You must be signed in to change notification settings - Fork 3
41 lines (34 loc) · 750 Bytes
/
Copy pathrelease.yml
File metadata and controls
41 lines (34 loc) · 750 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
41
name: stdsharp Release
on:
workflow_dispatch:
push:
tags:
- '*'
permissions:
contents: write
jobs:
release-job:
name: release on tags
runs-on: ${{ matrix.os }}
continue-on-error: false
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
include:
- os: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Archive
uses: thedoctor0/zip-release@0.7.6
with:
type: zip
directory: ${{ github.workspace }}
exclusions: |
.git/
.github/
- name: Release
uses: softprops/action-gh-release@v2
with:
files: ${{ github.workspace }}/release.zip
token: ${{ secrets.GITHUB_TOKEN }}