Изменил код кваров.\nТеперь при изменении квара hns_deathmatch изменя… #5
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "**.md" | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| name: "Build" | |
| runs-on: ubuntu-24.04 | |
| outputs: | |
| COMMIT_SHA: ${{ steps.declare_sha.outputs.COMMIT_SHA }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Declare SHA & package name | |
| id: declare_sha | |
| shell: bash | |
| run: | | |
| SHA=$(git rev-parse --short HEAD) | |
| echo "COMMIT_SHA=$SHA" >> $GITHUB_OUTPUT | |
| - name: Setup latest ReAPI includes | |
| env: | |
| REPO: "rehlds/reapi" | |
| run: | | |
| mkdir -p dep/reapi | |
| cd dep/reapi | |
| curl \ | |
| --silent \ | |
| https://api.github.com/repos/$REPO/releases/latest | \ | |
| grep "browser_download_url" | \ | |
| grep -Eo 'https://[^\"]*' | \ | |
| xargs wget | |
| 7z x *.zip | |
| echo "REAPI_INCLUDE_PATH=$(pwd)/addons/amxmodx/scripting/include" >> $GITHUB_ENV | |
| - name: Setup AMXXPawn Compiler | |
| uses: wopox1337/setup-amxxpawn@master | |
| with: | |
| version: '1.9.x' | |
| - name: Compile plugins | |
| working-directory: scripting/ | |
| env: | |
| REAPI_INCLUDE: ${{ env.REAPI_INCLUDE_PATH }} | |
| run: | | |
| compile() { | |
| sourcefile=$1 | |
| amxxfile="$(echo $sourcefile | sed -e 's/\.sma$/.amxx/')" | |
| output_path="../plugins/$amxxfile" | |
| mkdir -p $(dirname $output_path) | |
| echo -n "Compiling $sourcefile ... " | |
| amxxpc $sourcefile -o"$output_path" \ | |
| -i"include" \ | |
| -i"$REAPI_INCLUDE" | |
| } | |
| export -f compile | |
| find * -type f -name "*.sma" -exec bash -c 'compile "$0"' {} \; | |
| - name: Directory | |
| run: | | |
| rm -rf ./dep | |
| mkdir -p cstrike/addons/amxmodx/ | |
| mv configs data scripting plugins cstrike/addons/amxmodx/ | |
| - name: Deploy artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: hns_mode-${{ steps.declare_sha.outputs.COMMIT_SHA }}-dev | |
| path: ./* | |
| publish: | |
| name: "Publish release" | |
| runs-on: ubuntu-24.04 | |
| needs: [build] | |
| if: | | |
| github.event_name == 'release' && | |
| github.event.action == 'published' && | |
| startsWith(github.ref, 'refs/tags/') | |
| steps: | |
| - name: Download artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: hns_mode-${{ needs.build.outputs.COMMIT_SHA }}-dev | |
| - name: Packaging binaries | |
| id: packaging | |
| run: 7z a -mm=Deflate -mfb=258 -mpass=15 -r hns_mode-${{ github.event.release.tag_name }}.zip ./ | |
| - name: Publish artifacts | |
| uses: softprops/action-gh-release@v2 | |
| id: publish-job | |
| if: | | |
| startsWith(github.ref, 'refs/tags/') && | |
| steps.packaging.outcome == 'success' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| files: | | |
| *.zip | |
| *.amxx |