Skip to content

Commit

Permalink
fix: release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjarten committed Oct 18, 2024
1 parent e79817a commit 912daa5
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,6 @@ name: Create New Release

on:
workflow_dispatch:
inputs:
dry-run:
description: |
Perform a dry run release (check for testing, uncheck for real release)
- Checked (true): Simulates the release process without making changes
- Unchecked (false): Creates an actual release with version bump
Note: Ensure all desired changes are merged to main before releasing
required: true
default: true
type: boolean

jobs:
release:
Expand Down Expand Up @@ -48,8 +38,4 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ github.event.inputs.dry-run }}" = "true" ]; then
semantic-release publish --dry-run --verbose
else
semantic-release publish --verbose
fi
semantic-release publish --log-level debug

0 comments on commit 912daa5

Please sign in to comment.