Skip to content

Commit 0da1120

Browse files
committed
Fix syntax issues with release task
1 parent d9c84b3 commit 0da1120

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,17 @@ jobs:
5555
with:
5656
ref: ${{ github.event.release.tag_name }}
5757

58-
# Set environment variables
59-
- name: Export Properties
60-
id: properties
61-
shell: bash
62-
run: |
63-
PROPERTIES="$(./gradlew properties --console=plain -q)"
64-
VERSION="$(echo "$PROPERTIES" | grep "^pluginVersion:" | cut -f2- -d ' ')"
65-
CUSTOM_SINCE_BUILD="$(echo "$PROPERTIES" | grep "^customSinceBuild:" | cut -f2- -d ' ')"
66-
PREFIXED_VERSION="$(echo ${CUSTOM_SINCE_BUILD}${VERSION:1})"
67-
68-
echo "::set-output name=prefixed-version::$PREFIXED_VERSION"
58+
# Set environment variables
59+
- name: Export Properties
60+
id: properties
61+
shell: bash
62+
run: |
63+
PROPERTIES="$(./gradlew properties --console=plain -q)"
64+
VERSION="$(echo "$PROPERTIES" | grep "^pluginVersion:" | cut -f2- -d ' ')"
65+
CUSTOM_SINCE_BUILD="$(echo "$PROPERTIES" | grep "^customSinceBuild:" | cut -f2- -d ' ')"
66+
PREFIXED_VERSION="$(echo ${CUSTOM_SINCE_BUILD}${VERSION:1})"
67+
68+
echo "::set-output name=prefixed-version::$PREFIXED_VERSION"
6969
7070
# Publish the plugin to the Marketplace
7171
- name: Publish Plugin

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ subprojects {
6565
}
6666

6767
publishPlugin {
68-
channels 'nightly'
6968
token System.getenv('IJ_REPO_TOKEN')
7069
}
7170

0 commit comments

Comments
 (0)