Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Commit

Permalink
Use rojo stable
Browse files Browse the repository at this point in the history
[release]
  • Loading branch information
cxmeel committed May 17, 2021
1 parent 0e33f43 commit fed69df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: build test project
run: rojo build test.project.json -o scripts/testplace.rbxlx
run: rojo build ./test.project.json -o ./scripts/testplace.rbxlx

- name: run unit tests
run: run-in-roblox --place scripts/testplace.rbxlx --script scripts/run-tests.server.lua
run: run-in-roblox --place ./scripts/testplace.rbxlx --script ./scripts/run-tests.server.lua

deploy:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -61,11 +61,11 @@ jobs:
- name: build project
run: |
rojo build default.project.json -o dist/${{ env.PROJECT_NAME }}.rbxmx
rojo build default.project.json -o dist/${{ env.PROJECT_NAME }}.rbxm
rojo build ./default.project.json -o ./dist/${{ env.PROJECT_NAME }}.rbxmx
rojo build ./default.project.json -o ./dist/${{ env.PROJECT_NAME }}.rbxm
- name: upload to roblox
run: rojo upload default.project.json --asset_id 5023525481 --cookie ${{ secrets.ROBLOSECURITY }}
run: rojo upload ./default.project.json --asset_id 5023525481 --cookie ${{ secrets.ROBLOSECURITY }}

- name: upload to github releases
uses: softprops/action-gh-release@v1
Expand All @@ -74,8 +74,8 @@ jobs:
body: ${{ env.PROJECT_COMMIT_ID }}
tag_name: ${{ env.PROJECT_VERSION }}
files: |
dist/${{ env.PROJECT_NAME }}.rbxmx
dist/${{ env.PROJECT_NAME }}.rbxm
./dist/${{ env.PROJECT_NAME }}.rbxmx
./dist/${{ env.PROJECT_NAME }}.rbxm
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"rojo.releaseBranch": "7.x",
"rojo.releaseBranch": "6.x",

"todo-tree.filtering.ignoreGitSubmodules": true,
"todo-tree.highlights.useColourScheme": true,
Expand Down
2 changes: 1 addition & 1 deletion foreman.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[tools]
rojo = { source = "rojo-rbx/rojo", version = "^7.0" }
rojo = { source = "rojo-rbx/rojo", version = "^6.1" }
run-in-roblox = { source = "rojo-rbx/run-in-roblox", version = "^0.3" }

0 comments on commit fed69df

Please sign in to comment.