We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5e4ccd commit 679a4f7Copy full SHA for 679a4f7
.github/workflows/release.yml
@@ -1,10 +1,12 @@
1
# Terraform Provider release workflow.
2
name: Release
3
4
-# This GitHub action creates a release when a new release is publised with a new tag
+# This GitHub action creates a release when a tag that matches the pattern
5
+# "v*" (e.g. v0.1.0) is created.
6
on:
- release:
7
- types: [published]
+ push:
8
+ tags:
9
+ - 'v*'
10
11
# Releases need permissions to read and write the repository contents.
12
# GitHub considers creating releases and uploading assets as writing contents.
0 commit comments