Skip to content

Commit d99694d

Browse files
committed
Finalise action workfow to auto create release if tag of form v* is pushed
1 parent 3e704bf commit d99694d

2 files changed

Lines changed: 3 additions & 29 deletions

File tree

.github/workflows/create-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33
# Sequence of patterns matched against refs/tags
44
tags:
5-
- 'x*' # Push events to matching v*, i.e. v1.0, v20.15.10
5+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
66

77
name: Create Release
88

@@ -22,7 +22,7 @@ jobs:
2222
tag_name: ${{ github.ref }}
2323
release_name: Release ${{ github.ref }}
2424
body: |
25-
Release created automatically from push of ${{ github.ref }} tag
25+
Release created automatically from push of ${{ github.ref }}
2626
27-
draft: true
27+
draft: false
2828
prerelease: false

.github/workflows/tagged-release.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)