mirror of
https://github.com/shenxn/protonmail-bridge-docker.git
synced 2025-12-06 08:27:08 +00:00
12 lines
193 B
Bash
12 lines
193 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -ex
|
||
|
|
|
||
|
|
VERSION=`cat VERSION`
|
||
|
|
|
||
|
|
if [[ $GITHUB_REF == "master" ]]; then
|
||
|
|
echo "::set-env name=TAGS::latest,${VERSION}"
|
||
|
|
else
|
||
|
|
echo "::set-env name=TAGS::dev,${VERSION}-dev"
|
||
|
|
fi
|