Skip to content

Commit

Permalink
feat(resolves #3): Fix github actions 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Kaestle committed Aug 20, 2024
1 parent ea8ab4e commit 109c2b4
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release
on:
push:
branches:
- main

jobs:
main:
runs-on: ubuntu-latest
environment:
name: release #your environment name
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Tests
on: push

jobs:
cloudformation-linter:
name: Lint CloudFormation Templates
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Cloud Formation Linter with Latest Version
uses: scottbrenner/cfn-lint-action@v2
- name: Print the Cloud Formation Linter Version & run Linter.
run: |
cfn-lint --version
cfn-lint

0 comments on commit 109c2b4

Please sign in to comment.