-
Notifications
You must be signed in to change notification settings - Fork 1
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
a6d467e
commit 7f12d75
Showing
3 changed files
with
69 additions
and
2 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,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 |
---|---|---|
@@ -1 +1 @@ | ||
lua/autorun/client/vgui-tools.lua | ||
*.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