mirror of
https://github.com/msmhq/msm.git
synced 2024-08-30 18:12:35 +00:00
Add GitHub Action manifest
This commit is contained in:
parent
5c28b6fc5c
commit
1eb15e6b6e
24
.github/workflows/build.yml
vendored
Normal file
24
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
name: Create Release
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- '[0-9]+.[0-9]+.[0-9]+'
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Release
|
||||||
|
uses: docker://antonyurchenko/git-release:latest
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
DRAFT_RELEASE: "false"
|
||||||
|
PRE_RELEASE: "false"
|
||||||
|
CHANGELOG_FILE: "none"
|
||||||
|
ALLOW_EMPTY_CHANGELOG: "false"
|
||||||
|
ALLOW_TAG_PREFIX: "true"
|
||||||
|
with:
|
||||||
|
args: |
|
||||||
|
build/*-amd64.zip
|
Loading…
Reference in New Issue
Block a user