Skip to content

Commit 5e54822

Browse files
authored
Create releases.yml
1 parent 7dafe40 commit 5e54822

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/releases.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "tagged-release"
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
tagged-release:
10+
name: "Tagged Release"
11+
runs-on: "ubuntu-latest"
12+
13+
steps:
14+
- name: Download all workflow run artifacts
15+
uses: actions/download-artifact@v2
16+
17+
- uses: "marvinpinto/action-automatic-releases@latest"
18+
with:
19+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
20+
prerelease: false
21+
files: |
22+
vult-linux.tar.gz
23+
vult-osx.tar.gz
24+
vult-win.zip
25+
vultweb.js
26+
vultlib.js
27+
vultc.js
28+
vultc.h

0 commit comments

Comments
 (0)