-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f0cade
commit ef2e965
Showing
1 changed file
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,23 +139,23 @@ jobs: | |
# - name: Qodana - Code Inspection | ||
# uses: JetBrains/[email protected] | ||
|
||
# Prepare plugin archive content for creating artifact | ||
- name: Prepare Plugin Artifact | ||
id: artifact | ||
shell: bash | ||
run: | | ||
cd ${{ github.workspace }}/plugin/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 artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: ${{ steps.artifact.outputs.filename }} | ||
path: ./plugin/build/distributions/content/*/* | ||
# # Prepare plugin archive content for creating artifact | ||
# - name: Prepare Plugin Artifact | ||
# id: artifact | ||
# shell: bash | ||
# run: | | ||
# cd ${{ github.workspace }}/plugin/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 artifact | ||
# uses: actions/[email protected] | ||
# with: | ||
# name: ${{ steps.artifact.outputs.filename }} | ||
# path: ./plugin/build/distributions/content/*/* | ||
|
||
- name: Remove Old Snapshot Packages | ||
if: github.ref == 'refs/heads/master' | ||
|