ci: migrate variable from input to env

This commit is contained in:
2025-02-23 16:14:22 -07:00
parent e904e00459
commit 5d24d8f39b

View File

@@ -526,13 +526,13 @@ jobs:
# # # #
- name: >- - name: >-
📋 Upload Artifacts ${{ env.PLUGIN_NAME }}-${{ env.PACKAGE_VERSION }}.zip 📋 Upload Artifacts ${{ env.env.PROJECT_NAME }}-${{ env.PACKAGE_VERSION }}.zip
id: task_release_artifact id: task_release_artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
if: always() if: always()
with: with:
name: "release" name: "release"
path: ${{ env.PLUGIN_NAME }}-${{ env.PACKAGE_VERSION }}.zip path: ${{ env.env.PROJECT_NAME }}-${{ env.PACKAGE_VERSION }}.zip
retention-days: 30 retention-days: 30
# # # #