Skip to content

Commit

Permalink
fix github publish
Browse files Browse the repository at this point in the history
  • Loading branch information
jpalus committed Oct 8, 2024
1 parent dd9d567 commit 7c9e857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ publish_github() {
elif [ -f "release-notes-$RELEASE_TIMESTAMP" ]; then
RELEASE_NOTES_FILE="release-notes-$RELEASE_TIMESTAMP"
fi
run_log "Publishing release to GitHub" gh release create -d -t pld-linux-arm-$RELEASE_TIMESTAMP ${RELEASE_NOTES_FILE:+-F $RELEASE_NOTES_FILE} pld-linux-arm-$RELEASE_TIMESTAMP *$RELEASE_TIMESTAMP*{xz,asc,packages}
run_log "Publishing release to GitHub" gh release create -d -t pld-linux-arm-$RELEASE_TIMESTAMP ${RELEASE_NOTES_FILE:+-F $RELEASE_NOTES_FILE} pld-linux-arm-$RELEASE_TIMESTAMP $(find $SCRIPT_DIR -name "*$RELEASE_TIMESTAMP*xz" -o -name "*$RELEASE_TIMESTAMP*asc" -o -name "*$RELEASE_TIMESTAMP*packages")
}

image_unmount_fs() {
Expand Down Expand Up @@ -757,7 +757,7 @@ case "$1" in
github)
ACTION=$1-$2
shift 2
$1_github "$@"
publish_github "$@"
;;
*)
ACTION=unknown
Expand Down

0 comments on commit 7c9e857

Please sign in to comment.