Stop hard coding row heights (fixes #34) #7
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
container: | |
image: mono:latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Decrypt/unpack dependencies and build | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: us-east-2 | |
AWS_DEFAULT_REGION: us-east-2 | |
run: | | |
apt-get update | |
apt-get install -y jq gpg awscli | |
KSP_VERSION=$(jq -rM '"\(.KSP_VERSION_MIN.MAJOR).\(.KSP_VERSION_MIN.MINOR)"' GameData/Astrogator/Astrogator.version) | |
aws s3 cp s3://hebarusan/KSP_Data-${KSP_VERSION}.tar.gz.gpg - | gpg --batch --no-tty --yes --passphrase ${{ secrets.GPG_KEY }} -d | tar xzf - -C Source | |
msbuild /r | |
msbuild /t:MakeZip |