21 lines
449 B
YAML
21 lines
449 B
YAML
name: Beta Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- beta-release
|
|
issue_comment:
|
|
|
|
jobs:
|
|
Compile-Plate-Tool:
|
|
runs-on: linux_arm
|
|
steps:
|
|
- name: Check out repo code
|
|
uses: https://github.com/actions/checkout@v4
|
|
with:
|
|
ref: "beta-release"
|
|
- name: Compile plate-tool
|
|
shell: zsh
|
|
run: |
|
|
source $HOME/.zshenv
|
|
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
|