Skip to content

Commit

Permalink
[patch] merge tag and release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kscarlett committed Jul 19, 2021
1 parent 61bf118 commit 08829eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 23 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
# You will need to pass the `--batch` flag to `gpg` in your signing step
# in `goreleaser` to indicate this is being used in a non-interactive mode.
#
name: release
name: Release
on:
push:
tags:
- "v*"
branch:
- "main"
jobs:
goreleaser:
runs-on: ubuntu-latest
Expand All @@ -22,6 +22,12 @@ jobs:
uses: actions/[email protected]
- name: Unshallow
run: git fetch --prune --unshallow
- name: install autotag binary
run: |
curl -sL https://git.io/autotag-install | sudo sh -s -- -b /usr/bin
- name: increment version
run: |
autotag --branch main
- name: Set up Go
uses: actions/setup-go@v2
with:
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/tag.yml

This file was deleted.

0 comments on commit 08829eb

Please sign in to comment.