Fix delay of summoned cards by towers #25
This file contains hidden or 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: pre-release | |
| on: [push] | |
| jobs: | |
| build: | |
| name: ubuntu | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ubuntu:20.04 # Use older Ubuntu version | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| steps: | |
| - name: Install Tools | |
| run: | | |
| apt-get update | |
| apt-get install -y git sudo gnupg software-properties-common python3-pip | |
| ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime | |
| echo "Etc/UTC" > /etc/timezone | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| # Build it | |
| - run: "./build/windows/requirements.sh" | |
| - run: "./build/windows/build.sh" | |
| - run: ./update_xml.sh | |
| - run: . build/windows/package.sh | |
| - name: Upload tuo | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: tuo | |
| path: | | |
| *.exe | |
| *.zip |