Skip to content

fix: change output names #60

fix: change output names

fix: change output names #60

Workflow file for this run

name: CI/CD
on:
pull_request: { branches: ["*"] }
push:
branches:
- "+([0-9])?(.{+([0-9]),x}).x"
- main
- next
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: "17"
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: "1.6.5"
- uses: actions/cache@v2
with:
path: .terraform/
key: ${{ hashFiles('.terraform.lock.hcl') }}
- uses: actions/cache@v2
with:
path: build/
key: ${{ github.sha }}
- run: terraform init
- run: terraform fmt -check
- run: terraform validate -no-color
- run: mkdir -p build
- run: cp -R .terraform.lock.hcl *.tf build
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo CodeCoverage
release:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v2
with:
path: build/
key: ${{ github.sha }}
- run: cp .github/.releaserc.yml .
- run: npm i -g semantic-release @semantic-release/changelog @semantic-release/github @semantic-release/git
- run: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}