Makes creatures that exit a soulgem inherit its soul power, stopping infinite enchantment recharge + sprite fixes #3017
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
# Beepsky, Goonstation's replacement for a CI service like Travis, utilizing GitHub Actions | |
# Based on Turdis by Yogstation | |
# Stripped down heavily for Burgerstation | |
name: Beepsky | |
on: | |
pull_request: | |
branches: master | |
push: | |
jobs: | |
compile: | |
name: Compile | |
runs-on: ubuntu-22.04 | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache BYOND | |
uses: actions/cache@v3 | |
with: | |
path: $HOME/BYOND | |
key: ${{ runner.os }}-byond | |
- name: Setup BYOND | |
run: | | |
tools/ci/install_byond.sh | |
cd $GITHUB_WORKSPACE | |
printenv | |
echo "BYOND_SYSTEM=/home/runner/BYOND/byond" >> $GITHUB_ENV | |
echo "/home/runner/BYOND/byond/bin" >> $GITHUB_PATH | |
echo "LD_LIBRARY_PATH=/home/runner/BYOND/byond/bin:$LD_LIBRARY_PATH" >> $GITHUB_ENV | |
echo "MANPATH=/home/runner/BYOND/byond/man:$MANPATH" >> $GITHUB_ENV | |
- name: Compile | |
run: | | |
tools/ci/dm.sh -DCIBUILD burgerstation.dme |