mirror of
https://codeberg.org/spire/sm_whitelist.git
synced 2026-06-03 18:24:06 +02:00
add ci
This commit is contained in:
parent
f8ecb9ae64
commit
0790ece940
1 changed files with 27 additions and 0 deletions
27
.github/workflows/compile.yaml
vendored
Normal file
27
.github/workflows/compile.yaml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
name: Build sourcepawn and commit
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- '**.sp'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Compile sourcepawn
|
||||||
|
uses: spiretf/spcomp@v0.1.0
|
||||||
|
with:
|
||||||
|
source: './plugin/autoexec.sp'
|
||||||
|
target: './plugin/autoexec.smx'
|
||||||
|
|
||||||
|
- name: Commit files
|
||||||
|
run: |
|
||||||
|
git config --local user.email "action@github.com"
|
||||||
|
git config --local user.name "GitHub Action"
|
||||||
|
git commit -m "Compile sourcepawn" -a
|
||||||
|
- name: Push changes
|
||||||
|
uses: ad-m/github-push-action@master
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue