File tree 1 file changed +21
-18
lines changed
1 file changed +21
-18
lines changed Original file line number Diff line number Diff line change 5
5
name : Release
6
6
7
7
on :
8
- release :
9
- types : [prereleased]
8
+ push :
9
+ branches :
10
+ - nate/apple-developer-finally
11
+ # release:
12
+ # types: [prereleased]
10
13
11
14
defaults :
12
15
run :
@@ -17,23 +20,23 @@ concurrency:
17
20
cancel-in-progress : true
18
21
19
22
jobs :
20
- check_release_name :
21
- runs-on : ubuntu-latest
22
- outputs :
23
- should_run : ${{ steps.check.outputs.should_run }}
24
- steps :
25
- - id : check
26
- working-directory : .
27
- run : |
28
- if [[ "${{ github.event.release.tag_name }}" == v0.0.*-jetbrains ]]; then
29
- echo "should_run=true" >> $GITHUB_OUTPUT
30
- else
31
- echo "should_run=false" >> $GITHUB_OUTPUT
32
- 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
33
36
34
37
# Prepare and publish the plugin to JetBrains Marketplace repository
35
38
build :
36
- needs : check_release_name
39
+ # needs: check_release_name
37
40
if : needs.check_release_name.outputs.should_run == 'true'
38
41
name : Build Plugin
39
42
runs-on : ubuntu-latest
44
47
# Check out current repository
45
48
- name : Fetch Sources
46
49
uses : actions/checkout@v4
47
- with :
48
- ref : ${{ github.event.release.tag_name }}
50
+ # with:
51
+ # ref: ${{ github.event.release.tag_name }}
49
52
50
53
# Validate wrapper
51
54
- name : Gradle Wrapper Validation
You can’t perform that action at this time.
0 commit comments