Skip to content

Commit

Permalink
fix(github-actions): correct gradle task paths in release workflow #100
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Sep 25, 2024
1 parent 52ebf94 commit 4d5a39d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
env:
CHANGELOG: ${{ steps.properties.outputs.changelog }}
run: |
./gradlew :plugin:patchChangelog --release-note="$CHANGELOG"
./gradlew :patchChangelog --release-note="$CHANGELOG"
# Publish the plugin to JetBrains Marketplace
- name: Publish Plugin
Expand All @@ -68,13 +68,13 @@ jobs:
CERTIFICATE_CHAIN: ${{ secrets.CERTIFICATE_CHAIN }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}
run: ./gradlew :plugin:publishPlugin
run: ./gradlew :publishPlugin

# Upload artifact as a release asset
- name: Upload Release Asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} ./plugin/build/distributions/*
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*

# Create a pull request
# - name: Create Pull Request
Expand Down

0 comments on commit 4d5a39d

Please sign in to comment.