Skip to content

Commit db8bbd5

Browse files
committed
don't check release name
1 parent 3d45d4c commit db8bbd5

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/jetbrains-release.yaml

+14-14
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ concurrency:
2020
cancel-in-progress: true
2121

2222
jobs:
23-
check_release_name:
24-
runs-on: ubuntu-latest
25-
outputs:
26-
should_run: ${{ steps.check.outputs.should_run }}
27-
steps:
28-
- id: check
29-
working-directory: .
30-
run: |
31-
if [[ "${{ github.event.release.tag_name }}" == v0.0.*-jetbrains ]]; then
32-
echo "should_run=true" >> $GITHUB_OUTPUT
33-
else
34-
echo "should_run=false" >> $GITHUB_OUTPUT
35-
fi
23+
# check_release_name:
24+
# runs-on: ubuntu-latest
25+
# outputs:
26+
# should_run: ${{ steps.check.outputs.should_run }}
27+
# steps:
28+
# - id: check
29+
# working-directory: .
30+
# run: |
31+
# if [[ "${{ github.event.release.tag_name }}" == v0.0.*-jetbrains ]]; then
32+
# echo "should_run=true" >> $GITHUB_OUTPUT
33+
# else
34+
# echo "should_run=false" >> $GITHUB_OUTPUT
35+
# fi
3636

3737
# Prepare and publish the plugin to JetBrains Marketplace repository
3838
build:
39-
needs: check_release_name
39+
# needs: check_release_name
4040
if: needs.check_release_name.outputs.should_run == 'true'
4141
name: Build Plugin
4242
runs-on: macos-latest

0 commit comments

Comments
 (0)