Skip to content

Commit

Permalink
Add 'release' workflow to create a GH release on tags
Browse files Browse the repository at this point in the history
This should help the conda-forge bot to pick up new releases faster.
  • Loading branch information
nicoddemus committed Jan 3, 2024
1 parent 20e1b34 commit 2a660a0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: release

on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"

jobs:

release:

runs-on: ubuntu-latest

steps:
- name: GitHub Release
uses: softprops/action-gh-release@v1

0 comments on commit 2a660a0

Please sign in to comment.