-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (53 loc) · 2.04 KB
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build and Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get current date and time
id: datetime
run: |
echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
echo "DATETIME=$(date +'%Y-%m-%d-%H-%M-%S')" >> $GITHUB_ENV
- name: Cache SourceMod dependencies
id: cache
uses: actions/cache@v4
with:
path: |
sourcemod-*
key: ${{ runner.os }}-sourcemod-${{ hashFiles('**/sourcemod-*') }}
restore-keys: |
${{ runner.os }}-sourcemod-
- name: Download Sourcemod
if: steps.cache.outputs.cache-hit != 'true'
run: |
wget https://sm.alliedmods.net/smdrop/1.11/sourcemod-1.11.0-git6968-linux.tar.gz
- name: Setup SourceMod
run: |
tar -xzf sourcemod-*.tar.gz
git clone https://github.com/Bara/Multi-Colors.git
git clone https://github.com/SilvDev/Left4DHooks.git
- name: Build plugin
run: |
mkdir -p build
addons/sourcemod/scripting/spcomp64 l4d2_tank_draw/scripting/l4d2_tank_draw.sp -o build/l4d2_tank_draw.smx -i ./Multi-Colors/addons/sourcemod/scripting/include -i ./Left4DHooks/sourcemod/scripting/include
addons/sourcemod/scripting/spcomp64 l4d2_tank_trigger/scripting/l4d2_tank_trigger.sp -o build/l4d2_tank_trigger.smx -i ./Multi-Colors/addons/sourcemod/scripting/include -i ./Left4DHooks/sourcemod/scripting/include
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: release-${{ env.DATETIME }}
name: Release ${{ env.DATE }} (${{ github.sha }})
draft: false
files: |
build/*.smx
l4d2_*/translations/*.txt
generate_release_notes: true
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
body: |
Release created at: ${{ env.DATETIME }}
Commit: ${{ github.sha }}