23 lines
602 B
YAML
23 lines
602 B
YAML
on: [push]
|
|
jobs:
|
|
job:
|
|
container:
|
|
image: ${{vars.DOCKER}}debian:bookworm
|
|
steps:
|
|
- name: spcd
|
|
env:
|
|
SPCD: ${{vars.SPCD}}
|
|
SPCD_SSH_HOSTS: ${{vars.SPCD_SSH_HOSTS}}
|
|
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
|
|
run: ${{vars.SPCD}}
|
|
|
|
- run: spcd-build-project
|
|
- run: spcd-browse-workspace
|
|
- run: spcd-synchronize
|
|
- name: Fetch num squared
|
|
id: get_square
|
|
uses: ./ # Uses an action in the root directory
|
|
# or use a released Github Action
|
|
# uses: shipyard/github-action/fetch-shipyard-env@1.0.0
|
|
with:
|
|
num: 11
|