Skip to content

Commit

Permalink
Merge pull request #954 from JetBrains/rival/fix-DEXP-832012
Browse files Browse the repository at this point in the history
Fix DEXP-832012
  • Loading branch information
rafaelldi authored Nov 11, 2024
2 parents d0712ea + d95c785 commit 3f0b606
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,13 @@ jobs:
run: |
./gradlew patchChangelog --release-note="$CHANGELOG"
# Upload artifact as a release asset
- name: Upload Release Asset
working-directory: ${{ github.workspace }}/PluginsAndFeatures/azure-toolkit-for-rider
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*

# Publish the plugin to JetBrains Marketplace
- name: Publish Plugin
working-directory: ${{ github.workspace }}/PluginsAndFeatures/azure-toolkit-for-rider
Expand All @@ -159,13 +166,6 @@ jobs:
PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}
run: ./gradlew publishPlugin

# Upload artifact as a release asset
- name: Upload Release Asset
working-directory: ${{ github.workspace }}/PluginsAndFeatures/azure-toolkit-for-rider
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*

# Create a pull request
- name: Create Pull Request
if: ${{ steps.properties.outputs.changelog != '' }}
Expand Down
6 changes: 6 additions & 0 deletions PluginsAndFeatures/azure-toolkit-for-rider/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

# Azure Toolkit for Rider Changelog

## [Unreleased]

### Fixed

- Fix DEXP-832012: Error while extracting a file

## 4.2.4 - 2024-10-28

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class FunctionCoreToolsManager {
if (downloadInfo.downloadFolderForTag.exists()) {
downloadInfo.downloadFolderForTag.deleteRecursively()
}
downloadInfo.downloadFolderForTag.mkdir()
downloadInfo.downloadFolderForTagAndRelease.mkdir()
} catch (e: Exception) {
LOG.error("Error while removing directory ${downloadInfo.downloadFolderForTag.path}", e)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.jetbrains
pluginName = azure-toolkit-for-rider
pluginRepositoryUrl = https://github.com/JetBrains/azure-tools-for-intellij
# SemVer format -> https://semver.org
pluginVersion = 4.2.4
pluginVersion = 4.2.5

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 242
Expand Down

0 comments on commit 3f0b606

Please sign in to comment.