Skip to content

Commit

Permalink
[TASK] Add automatic releases on tag (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Norre Mikkelsen committed Jan 17, 2021
1 parent 78f8656 commit 9f56df9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Release"

on:
push:
tags:
- "**"

jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: "Create release"
uses: "actions/create-release@v1"
env:
GITHUB_TOKEN: "${{ secrets.TOMASNORRE_BOT_TOKEN }}"
with:
draft: false
prerelease: false
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}

0 comments on commit 9f56df9

Please sign in to comment.