-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove requirements on test and lint for release
- Loading branch information
1 parent
b6e8dc9
commit c5199a3
Showing
1 changed file
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
--- | ||
name: GoReleaser | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
name: GoReleaser | ||
- 'v*' | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
needs: [ test, lint ] | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v1 | ||
- name: goreleaser | ||
uses: docker://goreleaser/goreleaser | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
args: release | ||
if: success() | ||
- name: Check out code | ||
uses: actions/checkout@v1 | ||
- name: goreleaser | ||
uses: docker://goreleaser/goreleaser | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
args: release | ||
if: success() |