Правки скрипта сборки #7
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: Build Project | |
# Workflow will trigger on any push to the master/main branch | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
Build: | |
# Building server | |
runs-on: windows-2022 | |
# Commands to complete task | |
steps: | |
# Cloning all repository | |
- name: Get Sources | |
uses: actions/checkout@v4 | |
# Compile it via shitty .bat file | |
- name: Compile Project | |
shell: cmd | |
run: zBuild.bat | |
# Upload artifact to the GitHub | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TSTW_RU-${{github.sha}} | |
path: Build/** |