Skip to content

Commit

Permalink
fix: release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MemoryZy committed Jun 29, 2024
1 parent 4c2af30 commit d93d31d
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -61,6 +61,7 @@ jobs:
echo "name=$NAME" >> $GITHUB_OUTPUT
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "pluginSignedName=$NAME-$VERSION-signed.zip" >> $GITHUB_OUTPUT
echo "changelog<<EOF" >> $GITHUB_OUTPUT
echo "$CHANGELOG" >> $GITHUB_OUTPUT
@@ -92,11 +93,7 @@ jobs:
- name: Upload Release Asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
NAME="${{ steps.properties.outputs.name }}"
VERSION="${{ steps.properties.outputs.version }}"
PLUGIN_SIGNED_ARTIFACT_NAME="$NAME-$VERSION-signed.zip"
gh release upload ${{ github.event.release.tag_name }} ./build/distributions/$PLUGIN_SIGNED_ARTIFACT_NAME
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/${{ steps.properties.outputs.pluginSignedName }}

# Create a pull request
- name: Create Pull Request
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@ public void actionPerformed(@NotNull AnActionEvent anActionEvent) {
}
}
((DefaultTreeModel) tree.getModel()).reload();

}
}
}

0 comments on commit d93d31d

Please sign in to comment.