Skip to content

Commit

Permalink
Create releases.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
modlfo committed Feb 25, 2023
1 parent 7dafe40 commit 5e54822
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v2

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
vult-linux.tar.gz
vult-osx.tar.gz
vult-win.zip
vultweb.js
vultlib.js
vultc.js
vultc.h

0 comments on commit 5e54822

Please sign in to comment.