File tree 1 file changed +14
-14
lines changed
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -20,23 +20,23 @@ concurrency:
20
20
cancel-in-progress : true
21
21
22
22
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
36
36
37
37
# Prepare and publish the plugin to JetBrains Marketplace repository
38
38
build :
39
- needs : check_release_name
39
+ # needs: check_release_name
40
40
if : needs.check_release_name.outputs.should_run == 'true'
41
41
name : Build Plugin
42
42
runs-on : macos-latest
You can’t perform that action at this time.
0 commit comments