Skip to content

Commit

Permalink
don't check release name
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Sep 16, 2024
1 parent 3d45d4c commit db8bbd5
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/jetbrains-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ concurrency:
cancel-in-progress: true

jobs:
check_release_name:
runs-on: ubuntu-latest
outputs:
should_run: ${{ steps.check.outputs.should_run }}
steps:
- id: check
working-directory: .
run: |
if [[ "${{ github.event.release.tag_name }}" == v0.0.*-jetbrains ]]; then
echo "should_run=true" >> $GITHUB_OUTPUT
else
echo "should_run=false" >> $GITHUB_OUTPUT
fi
# check_release_name:
# runs-on: ubuntu-latest
# outputs:
# should_run: ${{ steps.check.outputs.should_run }}
# steps:
# - id: check
# working-directory: .
# run: |
# if [[ "${{ github.event.release.tag_name }}" == v0.0.*-jetbrains ]]; then
# echo "should_run=true" >> $GITHUB_OUTPUT
# else
# echo "should_run=false" >> $GITHUB_OUTPUT
# fi

# Prepare and publish the plugin to JetBrains Marketplace repository
build:
needs: check_release_name
# needs: check_release_name
if: needs.check_release_name.outputs.should_run == 'true'
name: Build Plugin
runs-on: macos-latest
Expand Down

0 comments on commit db8bbd5

Please sign in to comment.