Skip to content

Commit

Permalink
fix: add dry run for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Sagargajare committed Mar 28, 2024
1 parent cac1951 commit 9ba6ec7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish-dry-run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Semantic Release Dry Run

on:
workflow_dispatch: # This allows manual triggering

jobs:
semantic-release-dry-run:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: Semantic Release Dry Run
run: npx semantic-release --dry-run

0 comments on commit 9ba6ec7

Please sign in to comment.