Skip to content

Commit 05c840d

Browse files
Fix: Change name for plugin artifacts (#2915)
<!-- Reference any GitHub issues resolved by this PR --> Closes # ## Introduced changes <!-- A brief description of the changes --> Change name for plugin artifacts so there's no collision when uploading artifacts in release workflow ## Checklist <!-- Make sure all of these are complete --> - [x] Linked relevant issue - [x] Updated relevant documentation - [x] Added relevant tests - [x] Performed self-review of the code - [x] Added changes to `CHANGELOG.md`
1 parent a193e31 commit 05c840d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish_plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
- name: Upload Artifact
121121
uses: actions/upload-artifact@v4
122122
with:
123-
name: build-${{ matrix.target }}
123+
name: build-plugin-${{ matrix.target }}
124124
path: ${{ env.OUTPUT_BINARY_PATH }}
125125
compression-level: 0
126126

@@ -148,7 +148,7 @@ jobs:
148148
set -euxo pipefail
149149
mkdir -p crates/snforge-scarb-plugin/target/scarb/cairo-plugin
150150
151-
mv artifacts-dl/build-*/snforge_scarb_plugin_* crates/snforge-scarb-plugin/target/scarb/cairo-plugin/
151+
mv artifacts-dl/build-plugin-*/snforge_scarb_plugin_* crates/snforge-scarb-plugin/target/scarb/cairo-plugin/
152152
153153
- name: Publish snforge_scarb_plugin
154154
if: needs.check-version.outputs.plugin_uploaded == 'false' || github.event_name == 'workflow_dispatch'

0 commit comments

Comments
 (0)