Skip to content

Commit

Permalink
fix: change form = to == in fry run comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjarten authored Oct 16, 2024
1 parent 184ab76 commit 2281c58
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@ jobs:
issues: write
pull-requests: write
actions: write

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install python-semantic-release
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Run semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ github.event.inputs.dry-run }}" = "true" ]; then
if [ "${{ github.event.inputs.dry-run }}" == "true" ]; then
semantic-release publish --dry-run
else
semantic-release publish
Expand Down

0 comments on commit 2281c58

Please sign in to comment.