Skip to content

Commit

Permalink
test auto-release
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Mar 14, 2020
1 parent 1f90817 commit 87ae09c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/github-release-tags.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Terraform CI/CD

on:
push:
branches:
- "**"
# - master

jobs:
terraform_linter:
runs-on: ubuntu-latest
steps:
- name: "Checkout source code"
uses: "actions/checkout@v1"
- name: Generate build number
id: buildnumber
uses: einaregilsson/build-number@v2
with:
token: ${{secrets.github_token}}
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
BUILD_NUMBER: ${{ steps.buildnumber.outputs.build_number }}

0 comments on commit 87ae09c

Please sign in to comment.