From 32e620cebdc621959267cc72553f199dc032fe77 Mon Sep 17 00:00:00 2001 From: QueenOfSquiggles <8940604+QueenOfSquiggles@users.noreply.github.com> Date: Sun, 7 Apr 2024 09:44:38 -0500 Subject: [PATCH] Release test 2 --- .github/workflows/deploy.yml | 36 ++++++++++++++++++------------------ README.md | 1 + testfor.sh | 6 ------ 3 files changed, 19 insertions(+), 24 deletions(-) delete mode 100755 testfor.sh diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a3ee1d4..7ef5fe9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,32 +23,31 @@ jobs: artifact: libsqore.so type: debug - # temporarily disabling other platforms to speed iterations - # # Debug mac - # - target: x86_64-apple-darwin - # artifact: libsqore.dylib - # type: debug + # Debug mac + - target: x86_64-apple-darwin + artifact: libsqore.dylib + type: debug - # # Debug Windows - # - target: x86_64-pc-windows-gnu - # artifact: sqore.dll - # type: debug + # Debug Windows + - target: x86_64-pc-windows-gnu + artifact: sqore.dll + type: debug # Release linux - target: x86_64-unknown-linux-gnu artifact: libsqore.so type: release - # # Release mac - # - target: x86_64-apple-darwin - # artifact: libsqore.dylib - # type: release + # Release mac + - target: x86_64-apple-darwin + artifact: libsqore.dylib + type: release - # # Release windows - # - target: x86_64-pc-windows-gnu - # artifact: sqore.dll - # type: release + # Release windows + - target: x86_64-pc-windows-gnu + artifact: sqore.dll + type: release steps: - name: Checkout @@ -116,7 +115,7 @@ jobs: with: use-cross: false command: doc - args: --verbose --no-deps --target-dir addons/sqore/ + args: --verbose --no-deps --target-dir . - name: download debug files uses: actions/download-artifact@v4.1.4 @@ -145,6 +144,7 @@ jobs: cp sqore.gdextension addons/sqore/sqore.gdextension cp -r scenes addons/sqore/scenes/ cp -r assets addons/sqore/assets/ + cp -r docs addons/sqore/docs/ zip -r -q sqore_release addons ls -1 diff --git a/README.md b/README.md index 6789ff3..a872aae 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ [![Rust Build and Test](https://github.com/QueenOfSquiggles/Squiggles-Core/actions/workflows/rust.yml/badge.svg?branch=main)](https://github.com/QueenOfSquiggles/Squiggles-Core/actions/workflows/rust.yml) +[![Deploy](https://github.com/QueenOfSquiggles/Sqore/actions/workflows/deploy.yml/badge.svg)](https://github.com/QueenOfSquiggles/Sqore/actions/workflows/deploy.yml) # Sqore (formerly Squiggles-Core) An opinionated utility library for making 3D games in Godot 4.2 written in rust. diff --git a/testfor.sh b/testfor.sh deleted file mode 100755 index 4469d46..0000000 --- a/testfor.sh +++ /dev/null @@ -1,6 +0,0 @@ -mkdir temp -for i in $(ls target/**/*sqore*.* ); -do - echo $i - cp $i temp/ -done; \ No newline at end of file