Skip to content

Commit

Permalink
feat: add CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
KoLiBer committed Aug 31, 2024
1 parent e70388e commit 1c526cf
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/.releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
tagFormat: $${q}{version}
branches:
- main
- master
- +([0-9])?(.{+([0-9]),x}).x
- { name: next, prerelease: true }
- { name: beta, prerelease: true }
- { name: alpha, prerelease: true }
- { name: stable, prerelease: true }
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- "@semantic-release/github"
- - "@semantic-release/git"
- assets: [CHANGELOG.md]
42 changes: 42 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI/CD

on:
pull_request: { branches: ["*"] }
push:
branches:
- "+([0-9])?(.{+([0-9]),x}).x"
- master
- main
- next

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.9.5"
- uses: actions/cache@v2
with:
path: .terraform/
key: ${{ hashFiles('.terraform.lock.hcl') }}

- run: terraform init
- run: terraform fmt -check
- run: terraform validate -no-color

bump:
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- run: npm i -g semantic-release @semantic-release/changelog @semantic-release/github @semantic-release/git
- run: cat .github/.releaserc.yml | envsubst > .releaserc.yml && semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1c526cf

Please sign in to comment.