Merge pull request #4 from vivantehealth/install-terraform #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# When a commit is made to main, perform a GitHub release, bumping the semantic | |
# version. Defaults to `default-bump` param, override with | |
# `#major`/`#minor`/`#patch` in the commit message | |
name: Publish GitHub Action | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
release: | |
name: GitHub Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: GitHub semver release | |
uses: vivantehealth/github-semver-release-action@v0 | |
with: | |
default-bump: patch |