Skip to content

Commit

Permalink
Merge pull request #418 from endofcake/master
Browse files Browse the repository at this point in the history
Add GitHub Action manifest
  • Loading branch information
endofcake committed Feb 23, 2021
2 parents 5c28b6f + 1eb15e6 commit 3c1e6eb
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3c1e6eb

Please sign in to comment.