Skip to content

Commit

Permalink
feat: add release tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed May 29, 2023
1 parent 8b1bfd4 commit 96a73b3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: "tagged-release"

# yamllint disable-line rule:truthy
on:
push:
tags:
- '*'

jobs:
tagged-release:
name: tagged-release
runs-on: ubuntu-20.04

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

0 comments on commit 96a73b3

Please sign in to comment.