Build Station #1
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 Station | |
on: | |
workflow_dispatch: | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
lfs: true | |
- name: Install golang deps | |
run: ./install-go-dependencies.sh | |
- name: Install system python deps | |
run: sudo apt update && sudo apt install python3-ply python3-pil | |
- name: Install python deps | |
run: pip install -r requirements.txt | |
- name: Generate station | |
run: PATH=${PWD}/gopath/bin:${PATH} make station | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@main | |
with: | |
path: station.grf |