Skip to content

fix: buffer health comparison #6

fix: buffer health comparison

fix: buffer health comparison #6

Workflow file for this run

name: Build and Release SourceMod Plugin
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup SourceMod
run: |
wget https://sm.alliedmods.net/smdrop/1.11/sourcemod-1.11.0-git6968-linux.tar.gz
tar -xzf sourcemod-*.tar.gz
- name: Build plugin
run: |
mkdir -p build
addons/sourcemod/scripting/spcomp l4d2_tank_draw/scripting/l4d2_tank_draw.sp -o build/l4d2_tank_draw.smx
- name: Release
uses: softprops/action-gh-release@v2
with:
draft: false
files: |
build/*.smx
generate_release_notes: true
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}