From fba8b2b0d088233068940438acaea041298230c6 Mon Sep 17 00:00:00 2001 From: Tilman Date: Fri, 9 Jun 2023 11:51:21 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AD=90=20Add=20Wally=20Publishing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/PublishAssets.yml | 14 ++++++++++++-- foreman.toml | 1 + wally.toml | 14 ++++++++++++++ 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 wally.toml diff --git a/.github/workflows/PublishAssets.yml b/.github/workflows/PublishAssets.yml index 3816193..b2cd885 100644 --- a/.github/workflows/PublishAssets.yml +++ b/.github/workflows/PublishAssets.yml @@ -1,4 +1,4 @@ -name: Publish To Roblox +name: Publish To Roblox & Wally on: push: @@ -23,8 +23,18 @@ jobs: - name: Report tool versions run: rojo --version - - name: Deploy + - name: Deploy to Roblox run: | rojo upload --cookie "$ROBLOSECURITY" --asset_id 6245329519 src env: ROBLOSECURITY: ${{ secrets.ROBLOSECURITY }} # d + + - name: Login to Wally + run: | + mkdir ~/.wally + printenv WALLY_AUTH > ~/.wally/auth.toml + env: + WALLY_AUTH: ${{ secrets.WALLY_AUTH }} + + - name: Publish to Wally + run: wally publish diff --git a/foreman.toml b/foreman.toml index b25da4d..b257d7a 100644 --- a/foreman.toml +++ b/foreman.toml @@ -1,3 +1,4 @@ [tools] rojo = { source = "rojo-rbx/rojo", version = "6.0.2" } tarmac = { source = "rojo-rbx/tarmac", version = "0.4.0" } +wally = { source = "UpliftGames/Wally", version = "0.3.2" } diff --git a/wally.toml b/wally.toml new file mode 100644 index 0000000..1b46368 --- /dev/null +++ b/wally.toml @@ -0,0 +1,14 @@ +[package] +name = "1foreverhd/zoneplus" +description = "Construct dynamic zones that utilise region checking, raycasting and the new BasePart.CanTouch property to effectively determine players and parts within their boundaries." +license = "MIT" +realm = "shared" +registry = "https://github.com/UpliftGames/wally-index" +version = "3.2.0" +exclude = [ + "docs", ".moonwave", "test", + "ZonePlus.rbxm", "ZonePlus.rbxmx", + ".gitignore", "foreman.toml", +] + +[dependencies] \ No newline at end of file From 9fd15df02648e66536a33f7b234edecdba064b60 Mon Sep 17 00:00:00 2001 From: Ben Horton <51117782+1ForeverHD@users.noreply.github.com> Date: Fri, 2 Feb 2024 01:52:39 +0000 Subject: [PATCH 2/2] Update PublishAssets.yml Replace asset publishing with wally --- .github/workflows/PublishAssets.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/PublishAssets.yml b/.github/workflows/PublishAssets.yml index b2cd885..bc50784 100644 --- a/.github/workflows/PublishAssets.yml +++ b/.github/workflows/PublishAssets.yml @@ -1,4 +1,4 @@ -name: Publish To Roblox & Wally +name: Publish To Wally on: push: @@ -20,15 +20,6 @@ jobs: version: "^1.0.0" token: ${{ secrets.GITHUB_TOKEN }} - - name: Report tool versions - run: rojo --version - - - name: Deploy to Roblox - run: | - rojo upload --cookie "$ROBLOSECURITY" --asset_id 6245329519 src - env: - ROBLOSECURITY: ${{ secrets.ROBLOSECURITY }} # d - - name: Login to Wally run: | mkdir ~/.wally