瀏覽代碼

fix: correct script to get latest snap version (#945)

Baptiste Augrain 3 年之前
父節點
當前提交
36b06dd66b
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      stores/snapcraft/check_deploy.sh

+ 1 - 3
stores/snapcraft/check_deploy.sh

@@ -13,10 +13,8 @@ elif [[ "${GITHUB_EVENT_NAME}" == "push" ]]; then
 else
 	echo "It's a cron"
 
-  sudo apt install curl jq
-
   sudo curl -sS --unix-socket /run/snapd.socket http://localhost/v2/find\?q\=codium > snap_latest.json
-  SNAP_VERSION=$(jq -r '.result|map(select(.id == "lIZWXTqmo6LFSts5Cgk2VPlNwtysZAeH"))|.version' snap_latest.json)
+  SNAP_VERSION=$(jq -r '.result|map(select(.id == "lIZWXTqmo6LFSts5Cgk2VPlNwtysZAeH"))|last.version' snap_latest.json)
   echo "Snap version: ${SNAP_VERSION}"
 
   wget --quiet https://api.github.com/repos/VSCodium/vscodium/releases -O gh_latest.json