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