35 lines
797 B
Bash
Executable file
35 lines
797 B
Bash
Executable file
#!/bin/bash -x
|
|
echo "Ejecutando $0 en directorio $(pwd)"
|
|
|
|
build_release_files(){
|
|
(
|
|
docker ps
|
|
make build-container
|
|
pwd
|
|
ls -la
|
|
./flutterw --exec ls -la
|
|
)
|
|
|
|
make build-container build-builders test build-android-release-container build-linux-release-container build-web-release-container
|
|
|
|
echo " ----> Listando archivos en ./build"
|
|
find build/
|
|
echo " <----"
|
|
|
|
pushd build/web && zip -r ../../webapp.zip * && popd
|
|
pushd build/linux/x64/release/bundle && zip -r ../../../../../linux-bin.zip * && popd
|
|
}
|
|
|
|
get_release_files(){
|
|
echo ./build/app/outputs/flutter-apk/app-release.apk linux-bin.zip webapp.zip
|
|
}
|
|
|
|
main(){
|
|
TAG=${GITHUB_REF#refs/tags/}
|
|
VERSION=${TAG#version-}
|
|
build_release_files
|
|
FILES="$(get_release_files)"
|
|
# gh release create $TAG $FILES
|
|
}
|
|
|
|
main
|