diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4134ebae..e12f5eab 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release on: push: tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + - 'v*' jobs: build: @@ -24,7 +24,7 @@ jobs: zip -r knit.zip Knit/** - name: Build place file run: | - rojo build publish.project.json -o Knit.rbxlx + rojo build publish.project.json -o Knit.rbxl - name: Publish Knit to Roblox shell: bash env: @@ -42,7 +42,7 @@ jobs: draft: false prerelease: false - name: Upload Release Asset - id: upload-release-asset + id: upload-release-asset uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore index 57cd899a..e15bf7d9 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ logo/logo_render*.png logo/*.psd logo/*.ai site/ -*.rbxlx \ No newline at end of file +*.rbxlx +*.rbxl \ No newline at end of file diff --git a/foreman.toml b/foreman.toml index 6c47091d..e9c6f86e 100644 --- a/foreman.toml +++ b/foreman.toml @@ -2,4 +2,4 @@ # Install latest selene selene = { source = "Kampfkarren/selene", version = "x" } rojo = { source = "rojo-rbx/rojo", version = "6.1.0" } -remodel = { source = "rojo-rbx/remodel", version = "0.7.1"} +remodel = { source = "rojo-rbx/remodel", version = "0.8.1"} diff --git a/publish.lua b/publish.lua index d9588128..b7a61d61 100644 --- a/publish.lua +++ b/publish.lua @@ -3,7 +3,7 @@ local KNIT_ASSET_ID = "5530714855" print("Loading Knit") -local place = remodel.readPlaceFile("Knit.rbxlx") +local place = remodel.readPlaceFile("Knit.rbxl") local Knit = place.ReplicatedStorage.Knit print("Writing Knit module to Roblox...")