Skip to content

Bump anothrNick/github-tag-action from 1.62.0 to 1.67.0 (#16) #37

Bump anothrNick/github-tag-action from 1.62.0 to 1.67.0 (#16)

Bump anothrNick/github-tag-action from 1.62.0 to 1.67.0 (#16) #37

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
- name: Terraform fmt
id: fmt
run: terraform fmt -check
- name: Terraform Init
id: init
run: terraform init
- name: Terraform Validate
env:
AWS_DEFAULT_REGION: us-west-2
id: validate
run: terraform validate -no-color
bump-version:
needs: check
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.67.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch