Skip to content

Commit

Permalink
chore: semantic release 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2980 committed Jun 7, 2024
1 parent 9dd1d71 commit 22cd73f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Semantic-Release

on:
push:
branches: ['manster']

jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set Node.js Env
- uses: actions/setup-node@v3
with:
node-version: "lts/*"
cache: 'yarn'

- name: Install Dependencies
- run: yarn install --frozen-lockfile
- uses: nrwl/nx-set-shas@v4

- name: Running Semantic-Release
run : npx semantic-release

0 comments on commit 22cd73f

Please sign in to comment.