fix: Wrong order of steps in release action

"+ Running a lune script came first before installing lune"
This commit is contained in:
Mark Marks 2024-09-22 13:22:28 +02:00
parent f30b3b677d
commit 64be498117
2 changed files with 4 additions and 4 deletions

View file

@ -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 }}

View file

@ -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")