fix: Wrong order of steps in release action
"+ Running a lune script came first before installing lune"
This commit is contained in:
parent
f30b3b677d
commit
64be498117
2 changed files with 4 additions and 4 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -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 }}
|
||||
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue