mirror of
https://github.com/msmhq/msm.git
synced 2024-08-30 18:12:35 +00:00
21677a3de3
Option was deprecated in git-release v4.0.0. No replacement is needed b/c msm's version tags do not have a static prefix before the version number. (i.e. tag name is "0.9.10", not "version-0.9.10")
24 lines
516 B
YAML
24 lines
516 B
YAML
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"
|
|
with:
|
|
args: |
|
|
build/*-amd64.zip
|