copy goal array before giving it to AIs #21
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: "pre-release" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
pre-release: | |
name: "Pre Release" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies to build gRPC stubs | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r seekers/grpc/requirements-dev.txt | |
sudo apt install protobuf-compiler | |
- name: "Build gRPC stubs" | |
run: | | |
cd seekers/grpc | |
bash compile_protos.sh | |
cd ../.. | |
zip -r seekers.zip * | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Development Build" | |
files: | | |
seekers.zip |