Skip to content

Commit 1d70063

Browse files
authored
Try to actually download the build artifact to the right place (#8)
* Pin Roblox packages to 0.693.0.6930961 (#375) * Start using Foundation's form elements (#335) Switching away from our custom form elements in favor of Foundation's * Try to actually download the build artifact to the right place * Also log out the `build` dirs contents * Download earlier for inspection * Double checking that the path is important * Yep that did it * Bump to 2.2.1
1 parent bb6adc8 commit 1d70063

20 files changed

+103
-582
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ jobs:
5555
steps:
5656
- uses: actions/checkout@v4
5757

58+
- uses: actions/download-artifact@v4
59+
with:
60+
name: flipbook-core-build
61+
path: workspace/flipbook-core/build
62+
5863
- uses: Roblox-ActionsCache/tibdex-github-app-token@v1.4.0
5964
id: setup_token
6065
with:
@@ -67,10 +72,6 @@ jobs:
6772
token: ${{ steps.setup_token.outputs.token }}
6873
allow-external-github-orgs: true
6974

70-
- uses: actions/download-artifact@v4
71-
with:
72-
name: flipbook-core-build
73-
7475
- uses: Roblox/rotriever-registry-workflows/composite-publish@v1
7576
if: ${{ !github.event.release }}
7677
with:

.lune/install.luau

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ local function installWallyPackages()
6464
end
6565

6666
local function installRobloxPackages()
67-
run("roblox-packages", { "install", "RobloxPackagesTmp", "--version", "0.690.0.6900721" })
67+
run("roblox-packages", { "install", "RobloxPackagesTmp", "--version", "0.693.0.6930961" })
6868

6969
local dest = "workspace/flipbook-core/RobloxPackages"
7070
if fs.isDir(dest) then

workspace/flipbook-core/rotriever.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "FlipbookCore"
33
content_root = "build"
4-
version = "2.2.0"
4+
version = "2.2.1"
55
files = ["*"]
66
publish = true
77

workspace/flipbook-core/src/Common/CodeBlock.luau

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local Highlighter = require("@pkg/Highlighter")
33
local React = require("@pkg/React")
44
local Sift = require("@pkg/Sift")
55

6-
local SelectableTextLabel = require("@root/Forms/SelectableTextLabel")
6+
local SelectableTextLabel = require("@root/Common/SelectableTextLabel")
77
local nextLayoutOrder = require("@root/Common/nextLayoutOrder")
88

99
local useMemo = React.useMemo

workspace/flipbook-core/src/Forms/SelectableTextLabel.luau renamed to workspace/flipbook-core/src/Common/SelectableTextLabel.luau

File renamed without changes.

workspace/flipbook-core/src/Forms/SelectableTextLabel.story.luau renamed to workspace/flipbook-core/src/Common/SelectableTextLabel.story.luau

File renamed without changes.

workspace/flipbook-core/src/Forms/Checkbox.luau

Lines changed: 0 additions & 54 deletions
This file was deleted.

workspace/flipbook-core/src/Forms/Checkbox.story.luau

Lines changed: 0 additions & 19 deletions
This file was deleted.

workspace/flipbook-core/src/Forms/Dropdown.luau

Lines changed: 0 additions & 103 deletions
This file was deleted.

workspace/flipbook-core/src/Forms/Dropdown.story.luau

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)