Merge pull request #57 from agrastiOs/master #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SOAP TF2 DM Autobuild | |
# modified from https://github.com/nosoop/NinjaBuild-SMPlugin/blob/master/contrib/github-workflow/build-on-version-tag-push.yml | |
on: | |
push: | |
tags: | |
- 'v*' | |
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 Compiler | |
uses: rumblefrog/setup-sp@master | |
with: | |
version: "1.10.x" | |
- name: Compile plugins | |
run: | | |
cd ./addons/sourcemod/scripting | |
spcomp -i ./include/ soap_tf2dm.sp -o ../plugins/soap_tf2dm.smx | |
spcomp -i ./include/ soap_tournament.sp -o ../plugins/soap_tournament.smx | |
cd ../../../ | |
- name: Zip packages | |
run: | | |
mkdir build | |
7za a -r build/soap.zip addons/ cfg/ | |
ls -la | |
pwd | |
- 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: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: ./build/soap.zip | |
asset_name: soap.zip | |
asset_content_type: application/zip |