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

Commit

Permalink
Update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleitnick committed May 4, 2021
1 parent e633337 commit dc3c7d6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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 }}
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ logo/logo_render*.png
logo/*.psd
logo/*.ai
site/
*.rbxlx
*.rbxlx
*.rbxl
2 changes: 1 addition & 1 deletion foreman.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
2 changes: 1 addition & 1 deletion publish.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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...")
Expand Down

0 comments on commit dc3c7d6

Please sign in to comment.