forked from powerlord/sourcemod-nativevotes
-
Notifications
You must be signed in to change notification settings - Fork 17
63 lines (51 loc) · 1.57 KB
/
nativevotes.yml
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
63
name: Nativevotes Autobuild
# modified from https://github.com/nosoop/NinjaBuild-SMPlugin/blob/master/contrib/github-workflow/build-on-version-tag-push.yml
on:
push:
branches: [ master ]
jobs:
run:
name: Run action
runs-on: ubuntu-22.04
# skip build on '[ci skip]'
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Setup SourcePawn 1.11 Compiler
uses: rumblefrog/setup-sp@master
with:
version: "1.11.x"
- name: Compile plugins 1.11
shell: bash
run: |
bash .github/nv_compile.sh
bash
- name: Setup SourcePawn 1.12 Compiler
uses: rumblefrog/setup-sp@master
with:
version: "1.12.x"
- name: Compile plugins 1.12
shell: bash
run: |
bash .github/nv_compile.sh
bash
- name: Set Commit Hash
id: commit_info
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: workflow-build${{ github.run_number }}
release_name: Build ${{ steps.commit_info.outputs.sha_short }}
draft: false
prerelease: false
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: workflow-build${{ github.run_number }}
files: build/nativevotes*