forked from Mouws/protonmail-bridge-nextcoud-podman
* Remove armv7 temporarily * Improve build script * Add update check for build * Update README * Fix build script * Change build version format * Improve update check * Bump build version to v1.5.4 * Fix build Dockerfile * Fix build action yaml Co-authored-by: GitHub Actions <actions@github.com>
14 lines
185 B
Bash
14 lines
185 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
VERSION=`cat VERSION`
|
|
|
|
# Clone new code
|
|
git clone https://github.com/ProtonMail/proton-bridge.git
|
|
cd proton-bridge
|
|
git checkout $VERSION
|
|
|
|
# Build
|
|
make build-nogui
|