Skip to content

Commit

Permalink
chore: update workflow to publish intellij-package to github
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Dec 30, 2024
1 parent 9415c3b commit bf4e5bb
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/build-test-package-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,22 +205,11 @@ jobs:
name: wheel-package
path: dist/*.whl

- name: Prepare IntelliJ Plugin Artifact
id: artifact
shell: bash
run: |
cd ${{ github.workspace }}/intellij-client/build/distributions
FILENAME=`ls *.zip`
unzip "$FILENAME" -d content
echo "filename=${FILENAME:0:-4}" >> $GITHUB_OUTPUT
# Store already-built plugin as an artifact for downloading
- name: Upload IntelliJ plugin
- name: Upload intellij plugin
uses: actions/upload-artifact@v4
with:
name: ${{ steps.artifact.outputs.filename }}
path: ./intellij-client/build/distributions/content/*/*
name: intellij-package
path: ./intellij-client/build/distributions/*.zip

publish:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -264,6 +253,10 @@ jobs:
with:
name: wheel-package
path: dist
- uses: actions/download-artifact@v4
with:
name: intellij-package
path: dist

- name: get release informations
id: get_release_informations
Expand Down

0 comments on commit bf4e5bb

Please sign in to comment.