Skip to content

Commit d3ec41e

Browse files
committed
ci changes
1 parent 48d3030 commit d3ec41e

File tree

1 file changed

+21
-18
lines changed

1 file changed

+21
-18
lines changed

.github/workflows/jetbrains-release.yaml

+21-18
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
name: Release
66

77
on:
8-
release:
9-
types: [prereleased]
8+
push:
9+
branches:
10+
- nate/apple-developer-finally
11+
# release:
12+
# types: [prereleased]
1013

1114
defaults:
1215
run:
@@ -17,23 +20,23 @@ concurrency:
1720
cancel-in-progress: true
1821

1922
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
3336

3437
# Prepare and publish the plugin to JetBrains Marketplace repository
3538
build:
36-
needs: check_release_name
39+
# needs: check_release_name
3740
if: needs.check_release_name.outputs.should_run == 'true'
3841
name: Build Plugin
3942
runs-on: ubuntu-latest
@@ -44,8 +47,8 @@ jobs:
4447
# Check out current repository
4548
- name: Fetch Sources
4649
uses: actions/checkout@v4
47-
with:
48-
ref: ${{ github.event.release.tag_name }}
50+
# with:
51+
# ref: ${{ github.event.release.tag_name }}
4952

5053
# Validate wrapper
5154
- name: Gradle Wrapper Validation

0 commit comments

Comments
 (0)