We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27281e commit e53a918Copy full SHA for e53a918
.github/workflows/build.yml
@@ -27,19 +27,6 @@ jobs:
27
java-version: 17
28
- name: Clean Build
29
run: ./gradlew clean build --no-daemon
30
- - name: Determine release status
31
- if: ${{ runner.os == 'Linux' }}
32
- run: |
33
- if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then
34
- echo "STATUS=snapshot" >> $GITHUB_ENV
35
- else
36
- echo "STATUS=release" >> $GITHUB_ENV
37
- fi
38
- - name: Archive Artifacts
39
- uses: actions/upload-artifact@v3
40
- with:
41
- name: Plugin Debug Archive
42
- path: build/libs/plugin-debug-*.jar
43
- name: Publish package
44
uses: gradle/gradle-build-action@v2
45
with:
0 commit comments