Skip to content

It's main, not master, thanks GitHub #56

It's main, not master, thanks GitHub

It's main, not master, thanks GitHub #56

Workflow file for this run

name: Package
on:
push:
branches: main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Environments
run: |
echo "SM_VERSION=1.12" >> $GITHUB_ENV
echo "PLUGIN_VERSION_REVISION<<EOF" >> $GITHUB_ENV
git rev-list --count HEAD >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Install
run: |
bash scripts/install.sh
- name: Set Version
run: |
bash scripts/version.sh
- name: Compile
run: |
cd build/addons/sourcemod/scripting
./spcomp vscript.sp -o ../plugins/vscript.smx
- name: Package
run: |
bash scripts/package.sh
- name: Release
uses: softprops/action-gh-release@v2
with:
files: build/VScript-${{ env.PLUGIN_VERSION }}.${{ env.PLUGIN_VERSION_REVISION }}.zip
tag_name: ${{ env.PLUGIN_VERSION }}.${{ env.PLUGIN_VERSION_REVISION }}
generate_release_notes: true