mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-22 02:50:14 +10:00
16 lines
213 B
Bash
Executable File
16 lines
213 B
Bash
Executable File
#!/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}"
|