fix: use ubuntu-18.04 (#947)

This commit is contained in:
Baptiste Augrain
2021-12-18 01:35:10 +01:00
committed by GitHub
parent 02755e7599
commit 6a4668040b
3 changed files with 5 additions and 5 deletions

15
stores/snapcraft/release.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
CALLER_DIR=$( pwd )
cd "$( dirname "${BASH_SOURCE[0]}" )"
echo "$SNAP_STORE_LOGIN" | snapcraft login --with -
snapcraft upload --release=stable *.snap
snapcraft logout
cd "${CALLER_DIR}"