Small changes #22
Workflow file for this run
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
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.22.2/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 [email protected] | |
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 |