fix: use redm_update_notify
only after read it from *.json
config
#270
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: CI | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
types: [opened, reopened, synchronize] | |
release: | |
types: [published] | |
jobs: | |
build: | |
name: "Build" | |
runs-on: ubuntu-latest | |
outputs: | |
COMMIT_SHA: ${{ steps.declare_sha.outputs.COMMIT_SHA }} | |
FULLVERSION: ${{ steps.semver_parser.outputs.fullversion }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Parse SemVer string (release) | |
id: semver_parser | |
if: | | |
github.event_name == 'release' && | |
github.event.action == 'published' && | |
startsWith(github.ref, 'refs/tags/') | |
uses: booxmedialtd/[email protected] | |
with: | |
input_string: ${{ github.ref }} | |
version_extractor_regex: 'refs\/tags\/(.*)$' | |
- name: Declare SHA & package name | |
id: declare_sha | |
shell: bash | |
run: | | |
SHA=$(git rev-parse --short HEAD) | |
echo "COMMIT_SHA=$SHA" >> $GITHUB_OUTPUT | |
echo "SEMVER_PATCH=${{ steps.semver_parser.outputs.patch }}-${{ steps.semver_parser.outputs.prerelease }}" >> $GITHUB_OUTPUT | |
- name: Setup latest ReAPI includes | |
env: | |
REPO: "s1lentq/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: Update versions for plugins (release) | |
working-directory: cstrike/addons/amxmodx/scripting/include/ | |
if: | | |
github.event_name == 'release' && | |
github.event.action == 'published' && | |
startsWith(github.ref, 'refs/tags/') | |
env: | |
PLUGIN_VERSION: "${{ steps.declare_sha.outputs.SEMVER_PATCH }}" | |
run: sed -i "s|manual|$PLUGIN_VERSION|g" redm_version.inc | |
- name: Update versions for plugins (only for artifacts builds) | |
working-directory: cstrike/addons/amxmodx/scripting/include/ | |
env: | |
PLUGIN_VERSION: "${{ steps.declare_sha.outputs.COMMIT_SHA }}" | |
run: sed -i "s|manual|$PLUGIN_VERSION|g" redm_version.inc | |
- name: Setup AMXXPawn Compiler | |
uses: wopox1337/[email protected] | |
with: | |
version: "1.10.5428" | |
- name: Compile plugins | |
working-directory: cstrike/addons/amxmodx/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: Move files | |
run: | | |
mkdir publish | |
mv cstrike/ publish/ | |
- name: Deploy artifact | |
uses: actions/[email protected] | |
with: | |
name: ReDeathmatch-${{ steps.declare_sha.outputs.COMMIT_SHA }}-dev | |
path: publish/* | |
publish: | |
name: "Publish release" | |
runs-on: ubuntu-latest | |
needs: [build] | |
if: | | |
github.event_name == 'release' && | |
github.event.action == 'published' && | |
startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Download artifact | |
uses: actions/[email protected] | |
with: | |
name: ReDeathmatch-${{ needs.build.outputs.COMMIT_SHA }}-dev | |
- name: Packaging binaries | |
id: packaging | |
run: 7z a -mm=Deflate -mfb=258 -mpass=15 -r ReDeathmatch-${{ needs.build.outputs.FULLVERSION }}.zip cstrike/ | |
- name: Publish artifacts | |
uses: softprops/[email protected] | |
id: publish-job | |
if: | | |
startsWith(github.ref, 'refs/tags/') && | |
steps.packaging.outcome == 'success' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: | | |
*.zip | |
*.amxx |