Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
metamethods committed Nov 28, 2024
0 parents commit fbb88ff
Show file tree
Hide file tree
Showing 24 changed files with 1,138 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: CompeyDev/[email protected]
- run: selene .
- run: stylua --check .
24 changes: 24 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
push:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: CompeyDev/[email protected]
- run: selene .
- run: stylua --check .
- run: rojo build --output build.rbxm release.project.json
- run: echo "VERSION=$(cat pesde.toml | grep -Po 'version = \"\K([0-9.]+)')" >> "$GITHUB_ENV"
- run: echo "NAME=$(cat pesde.toml | grep -Po 'name = \".*/\K([a-zA-Z_]+)')" >> "$GITHUB_ENV"
- uses: ncipollo/release-action@v1
with:
artifacts: ${{ format('{0}.rbxm', env.NAME) }}
tag: ${{ env.VERSION }}
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Project place file
/waypoints.rbxlx

# Roblox Studio lock files
/*.rbxlx.lock
/*.rbxl.lock

# Roblox Studio model files
/*.rbxm

# Pesde
roblox_packages/
.pesde/
/pesde.lock

# Rojo files
/sourcemap.json
3 changes: 3 additions & 0 deletions .luaurc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"languageMode": "strict"
}
1 change: 1 addition & 0 deletions .styluaignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
roblox_packages/
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"luau-lsp.require.directoryAliases": {
"@lune/": "~/.lune/.typedefs/0.8.9/"
},
"files.eol": "\n" // If youre on windows
}
Loading

0 comments on commit fbb88ff

Please sign in to comment.