-
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
1 parent
a197500
commit 11925b4
Showing
7 changed files
with
357 additions
and
220 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Create Yuescript Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Change directory | ||
run: cd $GITHUB_WORKSPACE | ||
|
||
- name: Remove unused files and folders | ||
run: | | ||
rm .gitignore | ||
rm -rf .github | ||
- name: Create VERSION file | ||
run: echo -e ${{ github.ref_name }} > VERSION | ||
|
||
- name: Download Yuescript and unzip yue | ||
run: | | ||
wget https://github.com/pigpigyyy/Yuescript/releases/download/v0.21.8/yue-linux-x86_64.zip | ||
unzip yue-linux-x86_64.zip | ||
rm yue-linux-x86_64.zip | ||
- name: Build .lua and remove .yue | ||
run: | | ||
./yue ./ | ||
rm yue | ||
find . -type f -name '*.yue' -delete | ||
- name: Push to lua branch | ||
run: | | ||
git config user.name github-actions | ||
git config user.email github-actions@github.com | ||
git add . | ||
git commit -m "Release build: $(cat VERSION)" | ||
git push -f origin HEAD:lua | ||
- name: Remove .git dir | ||
run: rm -rf .git | ||
|
||
- name: Create subdirectory | ||
run: mkdir ${{ github.event.repository.name }} | ||
|
||
- name: Move files into sub directory | ||
run: ls | grep -v ${{ github.event.repository.name }} | xargs mv -t ${{ github.event.repository.name }} | ||
|
||
- name: Create Release Asset | ||
run: zip -r9 ${{ github.event.repository.name }}.zip . | ||
|
||
- name: Publish Release | ||
uses: softprops/action-gh-release@v1 | ||
id: create_release | ||
with: | ||
name: Release ${{ github.ref_name }} | ||
draft: false | ||
prerelease: false | ||
generate_release_notes: true | ||
files: | | ||
./${{ github.event.repository.name }}.zip |
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 @@ | ||
*.lua |
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,2 +1,7 @@ | ||
# Improved Network Library | ||
|
||
A faster and more performance version of the Garry's Mod `net` library with additional cool features. | ||
|
||
### Basic Changes | ||
- `net.Receive` - has an additional third optional argument `string` "identifier" used for multiple receive callbacks. | ||
- `net.Start` - automatically creates network strings on the server without using `util.AddNetworkString`. | ||
- `net.StartX` - default `net.Start`. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.