2022-02-08 18:42:28 +00:00
name : Compile QuakeC and Publish Release
on : [ push]
jobs :
Compile-QC :
runs-on : ubuntu-latest
2022-04-16 20:00:56 +00:00
if : github.ref == 'refs/heads/main'
2022-02-08 18:42:28 +00:00
steps :
2024-01-07 23:14:35 +00:00
- name : Install Python and Libraries
run : |
sudo -i
apt update && apt install python3 python3-pip wget
wget https://raw.githubusercontent.com/nzp-team/QCHashTableGenerator/main/requirements.txt
pip install -r requirements.txt
2022-10-24 12:49:47 +00:00
- uses : actions/checkout@v3
2022-02-08 18:42:28 +00:00
- name : Clone Repository
working-directory : ./tools
run : |
sudo -i
./qc-compiler-lin.sh
echo "QC COMPILE STATUS - ${{ job.status }}."
- name : Zip Progs
working-directory : ./build
run : |
2023-02-05 21:03:57 +00:00
zip -r -j fte-nzp-qc.zip fte/*
zip -r -j standard-nzp-qc.zip standard/*
2022-02-08 18:42:28 +00:00
- name : Generate Build Date
id : date
run : echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
- name : Delete Old Release
2023-03-17 16:16:30 +00:00
uses : dev-drprasad/delete-tag-and-release@v0.2.1
2022-02-08 18:42:28 +00:00
with :
delete_release : true
tag_name : bleeding-edge
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
- name : Create Release
id : create_release
uses : actions/create-release@v1
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
with :
tag_name : bleeding-edge
release_name : Automated Release ${{ steps.date.outputs.date }}
body : |
This is a **bleeding edge** NZ:P QuakeC release, stability is not guarenteed and you may need to grab an updated asset release if this update depends on new models/textures/etc.
To install :
2023-02-05 21:03:57 +00:00
- Grab the .ZIP archive for your desired platform below (fte-nzp-qc.zip for PC platforms/WebGL, standard-nzp-qc.zip for everything else..).
2022-02-08 18:42:28 +00:00
- Extract the contents of the .ZIP archive to your nzp folder (Example : copy `progs.dat` and `progs.lno` to `PSP/GAME/nzportable/nzp`).
draft : true
prerelease : false
2023-02-05 21:03:57 +00:00
- name : Upload STANDARD QC
2022-02-08 18:42:28 +00:00
uses : actions/upload-release-asset@v1
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
with :
upload_url : ${{ steps.create_release.outputs.upload_url }}
2023-02-05 21:03:57 +00:00
asset_path : ./build/standard-nzp-qc.zip
asset_name : standard-nzp-qc.zip
2022-02-08 18:42:28 +00:00
asset_content_type : application/zip
2023-02-05 21:03:57 +00:00
- name : Upload FTE QC
2022-02-08 18:42:28 +00:00
uses : actions/upload-release-asset@v1
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
with :
upload_url : ${{ steps.create_release.outputs.upload_url }}
2023-02-05 21:03:57 +00:00
asset_path : ./build/fte-nzp-qc.zip
asset_name : fte-nzp-qc.zip
2022-02-08 18:42:28 +00:00
asset_content_type : application/zip
- name : Publish Release
uses : StuYarrow/publish-release@v1
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
with :
id : ${{ steps.create_release.outputs.id }}