-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
108 additions
and
153 deletions.
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,29 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git Credentials | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v4 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install mkdocs-material | ||
- run: mkdocs gh-deploy --force |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,7 +6,9 @@ on: | |
- 'v*.*.*' | ||
|
||
permissions: | ||
contents: write | ||
contents: write | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
bump: | ||
|
@@ -46,8 +48,8 @@ jobs: | |
git tag -f ${{ github.ref_name }} | ||
git push -f --tags | ||
draft-build: | ||
name: Draft & Build Assets | ||
publish-build: | ||
name: Publish Assets | ||
runs-on: ubuntu-latest | ||
needs: bump | ||
steps: | ||
|
@@ -63,7 +65,7 @@ jobs: | |
- name: Generate sourcemap | ||
run: argon sourcemap standalone.project.json --output sourcemap.json | ||
|
||
- name: Generate Wally types | ||
- name: Generate package types | ||
run: wally-package-types --sourcemap sourcemap.json Packages | ||
|
||
- name: Format code | ||
|
@@ -77,10 +79,50 @@ jobs: | |
with: | ||
tag_name: ${{ github.ref_name }} | ||
name: ${{ github.ref_name }} | ||
draft: true | ||
prerelease: ${{ contains(github.ref_name, 'rc') }} | ||
body: | | ||
## Changelog | ||
${{ needs.bump.outputs.release-body }} | ||
files: | | ||
./Standalone.rbxm | ||
./Standalone.rbxm | ||
publish-package: | ||
name: Publish Package | ||
runs-on: ubuntu-latest | ||
needs: bump | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Rokit | ||
uses: CompeyDev/[email protected] | ||
|
||
- name: Log In | ||
env: | ||
WALLY_AUTH: ${{ secrets.WALLY_AUTH_TOKEN }} | ||
run: | | ||
mkdir ~/.wally | ||
printenv WALLY_AUTH > ~/.wally/auth.toml | ||
- name: Publish | ||
run: | | ||
wally publish | ||
publish-announcement: | ||
name: Publish Announcement | ||
runs-on: ubuntu-latest | ||
needs: [publish-package, publish-build] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Rokit | ||
uses: CompeyDev/[email protected] | ||
|
||
- name: Send webhook | ||
env: | ||
WEBHOOK_URL: ${{ secrets.UPDATE_WEBHOOK_URL }} | ||
run: | | ||
PROJECT="${{ github.repository }}" | ||
VERSION="${{ github.ref_name }}" | ||
lune run .lune/discord.luau "$WEBHOOK_URL" "announcement" "$PROJECT" "$VERSION" |
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,14 +1,10 @@ | ||
# Vitepress | ||
docs/.vitepress/cache | ||
docs/.vitepress/dist | ||
|
||
# Node | ||
node_modules | ||
# Mkdocs | ||
venv | ||
|
||
# Wally | ||
Packages | ||
DevPackages | ||
wally.lock | ||
|
||
# Argon | ||
sourcemap.json | ||
sourcemap.json |
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
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,7 +1,7 @@ | ||
<div align="center"> | ||
# Plugin Framework | ||
|
||
# Lumin Plugin Framework | ||
[![license](https://img.shields.io/github/license/luminlabsdev/plugin-framework)](https://github.com/luminlabsdev/plugin-framework/blob/main/LICENSE) | ||
[![release](https://img.shields.io/github/v/release/luminlabsdev/plugin-framework)](https://github.com/luminlabsdev/plugin-framework/releases/latest) | ||
[![discord](https://img.shields.io/discord/1105688855375511642?logo=discord&logoColor=white&label=discord&color=4d3dff)](https://luminlabsdev.github.io/link/discord) | ||
|
||
An extension of Lumin Framework with added plugin support and methods. | ||
|
||
</div> |
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,6 +1,6 @@ | ||
{ | ||
"name": "PluginFramework", | ||
"name": "framework", | ||
"tree": { | ||
"$path": "src" | ||
} | ||
} | ||
} |
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
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
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,8 +2,8 @@ | |
"name": "standalone", | ||
"tree": { | ||
"$path": "Packages", | ||
"PluginFramework": { | ||
"framework": { | ||
"$path": "src" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.