Skip to content

Commit

Permalink
fix: change CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
KoLiBer committed Feb 28, 2024
1 parent d18310b commit 363a40d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: "1.6.5"
Expand All @@ -30,7 +30,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: echo Test

Expand All @@ -39,7 +39,10 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- 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
Expand Down

0 comments on commit 363a40d

Please sign in to comment.