From 64be498117cae561b66fe86239232c475b907a76 Mon Sep 17 00:00:00 2001 From: Mark Marks Date: Sun, 22 Sep 2024 13:22:28 +0200 Subject: [PATCH] fix: Wrong order of steps in release action "+ Running a lune script came first before installing lune" --- .github/workflows/release.yml | 6 +++--- .lune/dev.luau | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 38a5657..efe52ea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,13 +59,13 @@ jobs: - name: Checkout Project uses: actions/checkout@v4 + - name: Install Rokit + uses: CompeyDev/setup-rokit@v0.1.2 + - name: Prepare for Distribution run: | lune run dist - - name: Install Rokit - uses: CompeyDev/setup-rokit@v0.1.2 - - name: Wally Login run: wally login --token ${{ secrets.WALLY_AUTH_TOKEN }} diff --git a/.lune/dev.luau b/.lune/dev.luau index 800ca80..62050a7 100644 --- a/.lune/dev.luau +++ b/.lune/dev.luau @@ -8,7 +8,7 @@ local spawn = require("util/spawn") spawn.spawn("rojo sourcemap dev.project.json -o sourcemap.json --watch") spawn.spawn("darklua process --config .darklua.json --watch lib/ dist/", { env = { ROBLOX_DEV = "true" } }) -task.wait(2.5) +task.wait(1) while true do local start_commit = stdio.prompt("confirm", "Start commit? -- `y` to start a commit, `n` to exit the script")