Skip to content

Commit

Permalink
Add github automatic release upon tags update
Browse files Browse the repository at this point in the history
  • Loading branch information
mougams committed Sep 9, 2022
1 parent fb08dee commit aad5e02
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false

0 comments on commit aad5e02

Please sign in to comment.