File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -193,6 +193,8 @@ jobs:
193193
194194 - name : Create artifact bundle using scripts
195195 run : |
196+ set -euox pipefail
197+
196198 # Get version from git tag or manual input
197199 if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
198200 VERSION="${{ github.event.inputs.tag_name }}"
@@ -202,9 +204,9 @@ jobs:
202204 VERSION=${VERSION#v} # Remove 'v' prefix if present
203205 echo "Creating artifact bundle for version $VERSION using scripts"
204206
205- # Create artifact bundle using existing binaries (skip rebuild)
207+ # Create artifact bundle using existing binaries (skip rebuild)
206208 chmod +x Scripts/spm-artifact-bundle.sh
207-
209+
208210 # Run script with error handling for missing Linux binaries
209211 if ! ./Scripts/spm-artifact-bundle.sh "$VERSION"; then
210212 echo "❌ Artifact bundle creation failed"
You can’t perform that action at this time.
0 commit comments