Skip to content

Commit

Permalink
actions: uploader: Don't clean after build
Browse files Browse the repository at this point in the history
We currently clean the build immediately after building the zip-file, which
has worked up until this point because our zip-file.clean target wasn't
actually correctly cleaning up the zip file. Now that the zip-file.clean
target is fixed running `make zip-file clean` is nonsensical since it
immediately deletes the just-built zip file.

Drop the clean invocation so that our zip file doesn't get nuked.
  • Loading branch information
mgalgs committed Nov 15, 2024
1 parent 5ce67c9 commit 383892d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/uploader/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -e
exit 1
}
git config --global --add safe.directory /github/workspace
make zip-file clean
make zip-file
export USERNAME
export PASSWORD
export ZIPBALL=./dist/[email protected]
Expand Down

0 comments on commit 383892d

Please sign in to comment.