Skip to content

Commit

Permalink
Add GitHub release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiRigal committed Apr 29, 2022
1 parent e17f343 commit c5bebb1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/github_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: github_release

on:
push:
tags:
- "v*"

jobs:
tagged-release:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
files: |
README.md

0 comments on commit c5bebb1

Please sign in to comment.