We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1a4df commit cbbb5beCopy full SHA for cbbb5be
.github/workflows/prerelease.yml
@@ -42,10 +42,15 @@ jobs:
42
- name: Generate artifact
43
run: |
44
./gradlew -PideProfileName=${{ matrix.supported_versions }} ${{ matrix.build_target }}
45
+ - name: Fix artifact name
46
+ env:
47
+ ARTIFACT_NAME: "${{ matrix.build_target }}"
48
+ run: |
49
+ echo "ARTIFACT_NAME=${ARTIFACT_NAME/-/:}" >> $GITHUB_ENV
50
- name: Upload artifact
51
uses: actions/upload-artifact@v4
52
with:
- name: plugin-${{ matrix.build_target }}-${{ matrix.supported_versions }}
53
+ name: ${{ env.ARTIFACT_NAME }}
54
path: ./plugins/**/build/distributions/*.zip
55
retention-days: 1
56
0 commit comments