Skip to content

Commit

Permalink
Add GitHub actions and release on push
Browse files Browse the repository at this point in the history
  • Loading branch information
iganbold committed Sep 6, 2020
1 parent 6776718 commit b212ec2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/devops.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release for Terraform registry

on:
push:
branches:
- master

jobs:
release-on-push:
runs-on: ubuntu-latest
steps:
- id: release
uses: rymndhng/release-on-push-action@master
with:
bump_version_scheme: patch
- name: Check Output Parameters
run: |
echo "Got tag name ${{ steps.release.outputs.tag_name }}"
echo "Got release version ${{ steps.release.outputs.version }}"

0 comments on commit b212ec2

Please sign in to comment.