Fix - Release workflow (#21)

This commit is contained in:
Jordon de Hoog 2024-10-03 12:50:26 -04:00 committed by GitHub
parent ce38ef5165
commit e852914088
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 24 additions and 9 deletions

View file

@ -48,7 +48,12 @@ jobs:
uses: gradle/actions/wrapper-validation@v4
- name: Build for ${{ matrix.target }}
run: ./scripts/build ${{ matrix.target }} ${{ env.VERSION_NAME }} --code ${{ env.VERSION_CODE }}
run: |
if [ -n "${{ env.VERSION_CODE }}" ]; then
./scripts/build ${{ matrix.target }} ${{ env.VERSION_NAME }} --code ${{ env.VERSION_CODE }}
else
./scripts/build ${{ matrix.target }} ${{ env.VERSION_NAME }}
fi
- name: Upload Artifacts
uses: actions/upload-artifact@v4
@ -80,7 +85,12 @@ jobs:
uses: gradle/actions/wrapper-validation@v4
- name: Build for ${{ matrix.os }}
run: ./scripts/build desktop ${{ env.VERSION_NAME }} --code ${{ env.VERSION_CODE }}
run: |
if [ -n "${{ env.VERSION_CODE }}" ]; then
./scripts/build desktop ${{ env.VERSION_NAME }} --code ${{ env.VERSION_CODE }}
else
./scripts/build desktop ${{ env.VERSION_NAME }}
fi
- name: Upload Artifacts
uses: actions/upload-artifact@v4
@ -177,7 +187,13 @@ jobs:
uses: actions/download-artifact@v4
with:
name: web
path: app/build/dist/wasmJs/productionExecutable
path: ./web-artifact.zip
- name: Unzip web build artifacts
run: |
mkdir -p app/build/dist/wasmJs/productionExecutable
unzip -q ./web-artifact.zip -d app/build/dist/wasmJs/productionExecutable
rm ./web-artifact.zip
- name: Deploy to production
uses: FirebaseExtended/action-hosting-deploy@v0

View file

@ -1,7 +1,7 @@
[versions]
app-name = "com.materialkolor.builder"
app-version = "1.0.0"
app-code = "100"
app-version = "1.0.1"
app-code = "101"
android-compileSdk = "34"
android-targetSdk = "34"
android-minSdk = "26"

View file

@ -37,14 +37,13 @@ code_value=""
while [[ $# -gt 0 ]]; do
case $1 in
--code)
if [[ $2 =~ ^[0-9]+$ ]]; then
code_value=$2
shift
else
if [ -z "$2" ] || [[ ! $2 =~ ^[0-9]+$ ]]; then
echo "Error: --code requires a numeric value"
usage
exit 1
fi
code_value=$2
shift
;;
*)
echo "Unknown option: $1"