Skip to content

Commit

Permalink
release fix
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Oct 16, 2024
1 parent dbe1d94 commit ce517e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,17 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

# Set environment variables
- name: Export Properties
id: properties
Expand Down Expand Up @@ -64,7 +60,7 @@ jobs:
CERTIFICATE_CHAIN: ${{ secrets.CERTIFICATE_CHAIN }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}
run: ./gradlew publishPlugin
run: ./gradlew publishPlugin -x test

# Upload artifact as a release asset
- name: Upload Release Asset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ class MassPatchAction : BaseAction() {
@Name("Recent Instructions")
val recentInstructions = JComboBox<String>()


}

class UserSettings(
Expand Down

0 comments on commit ce517e3

Please sign in to comment.