1
0
mirror of https://github.com/juzzlin/Heimer.git synced 2025-05-09 21:01:39 +08:00
Heimer/scripts/upload-snap
2022-11-11 19:02:48 +02:00

13 lines
319 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
SNAP_BUILD_PATH=/home/jenkins/workspace/Heimer-Snap_master/
SNAP_FILE_PATH=$(ls -t ${SNAP_BUILD_PATH}/heimer*.snap | head -1)
SNAP_FILE_NAME=$(basename ${SNAP_FILE_PATH})
cp -v ${SNAP_FILE_PATH} ./${SNAP_FILE_NAME} || exit 1
snapcraft upload --release=stable ${SNAP_FILE_NAME} || exit 1
echo "Done."