Skip to content

Commit 711b15a

Browse files
authored
Merge pull request #432 from Next-Door-Tech/git-release
Fix the git-release GitHub Action workflow constantly creating errors
2 parents 3c1e6eb + 471929a commit 711b15a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Create Release
22
on:
33
push:
4-
branches:
5-
- master
64
tags:
75
- '[0-9]+.[0-9]+.[0-9]+'
86
jobs:
@@ -11,14 +9,13 @@ jobs:
119
steps:
1210
- uses: actions/checkout@master
1311
- name: Release
14-
uses: docker://antonyurchenko/git-release:latest
12+
uses: docker://antonyurchenko/git-release:v4
1513
env:
1614
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1715
DRAFT_RELEASE: "false"
1816
PRE_RELEASE: "false"
1917
CHANGELOG_FILE: "none"
2018
ALLOW_EMPTY_CHANGELOG: "false"
21-
ALLOW_TAG_PREFIX: "true"
2219
with:
2320
args: |
24-
build/*-amd64.zip
21+
build/*-amd64.zip

0 commit comments

Comments
 (0)