-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Ignore temporary files created by wally * Add package config * Add wally * Add package publish action
- Loading branch information
1 parent
b72affc
commit 4836619
Showing
4 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name : Publish system packages to registry | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
package-publish: | ||
name: Publish packages to wally registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | ||
|
||
- name: Setup foreman | ||
uses: rojo-rbx/setup-foreman@62bc697705339a6049f74c9d0ff6d39cffc993e5 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish wally packages | ||
env: | ||
WALLY_AUTH: ${{ secrets.WALLY_AUTH }} | ||
run: | | ||
mkdir -p ~/.wally | ||
echo "$WALLY_AUTH" > ~/.wally/auth.toml | ||
wally publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ | |
/*.rbxlx | ||
/*.rbxmx | ||
/*.rbxm | ||
/*.rbxl | ||
/*.rbxl | ||
/*.lock | ||
/Packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[tools] | ||
rojo = {source = "Roblox/rojo", version = "6.0.0-rc.1"} | ||
wally = {source = "upliftgames/wally", version = "=0.3.1"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[package] | ||
name = "buildthomas/mockdatastoreservice" | ||
description = "Emulation of Roblox's DataStoreService for seamless offline development & testing" | ||
version = "1.0.2" | ||
authors = ["buildthomas"] | ||
realm = "shared" | ||
license = "Apache-2.0" | ||
registry = "https://github.com/UpliftGames/wally-index" |