Skip to content

fix: add hcloud_gateway to agent.sh #51

fix: add hcloud_gateway to agent.sh

fix: add hcloud_gateway to agent.sh #51

Workflow file for this run

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@v3
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: "1.6.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
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo Test
release:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- 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 }}