Compare commits
No commits in common. "0ced960e7628a06b8b4aea6917f18c96a1ff3076" and "ae95d1a98576aa104e28189db0c3067252dbb02b" have entirely different histories.
0ced960e76
...
ae95d1a985
2 changed files with 8 additions and 9 deletions
|
@ -2,15 +2,16 @@ on: [push]
|
|||
jobs:
|
||||
job:
|
||||
container:
|
||||
image: ${{vars.DOCKER}}debian:bookworm
|
||||
image: 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: >
|
||||
${{vars.SPCD}}
|
||||
"${{secrets.SPCD_SSH_KEY}}"
|
||||
"${{vars.SPCD_SSH_HOSTS}}"
|
||||
|
||||
- run: spcd-list-environment
|
||||
- run: spcd-clone-branch
|
||||
- run: spcd-build-project
|
||||
- run: spcd-browse-workspace
|
||||
- run: spcd-synchronize
|
||||
|
|
4
build.py
4
build.py
|
@ -2,10 +2,8 @@
|
|||
|
||||
import sys
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from rwx.prj.sphinx import SphinxProject
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(SphinxProject(Path(__file__)).build())
|
||||
sys.exit(SphinxProject(__file__).build())
|
||||
|
|
Loading…
Reference in a new issue