Skip to content

Commit b212ec2

Browse files
committed
Add GitHub actions and release on push
1 parent 6776718 commit b212ec2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/devops.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)