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 5eed5f2 commit a44a72fCopy full SHA for a44a72f
.github/workflows/hack.yml
@@ -0,0 +1,21 @@
1
+name: Release to Terraform registry
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ release-on-push:
10
+ runs-on: ubuntu-latest
11
+ env:
12
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13
+ steps:
14
+ - id: release
15
+ uses: rymndhng/release-on-push-action@master
16
+ with:
17
+ bump_version_scheme: patch
18
+ - name: Check Output Parameters
19
+ run: |
20
+ echo "Got tag name ${{ steps.release.outputs.tag_name }}"
21
+ echo "Got release version ${{ steps.release.outputs.version }}"
0 commit comments