Compare commits
No commits in common. "d833cf85707fdc257ff7e23dad57341844136edd" and "a9530836f9665ef18185ae1d87c5036d56dab74f" have entirely different histories.
d833cf8570
...
a9530836f9
2 changed files with 16 additions and 11 deletions
|
@ -2,16 +2,21 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
job:
|
job:
|
||||||
container:
|
container:
|
||||||
image: ${{vars.DOCKER}}debian:bookworm
|
image: debian:bookworm
|
||||||
steps:
|
steps:
|
||||||
- name: spcd
|
- name: cd
|
||||||
env:
|
env:
|
||||||
SPCD: ${{vars.SPCD}}
|
CD: ${{secrets.cd}}
|
||||||
SPCD_SSH_HOSTS: ${{vars.SPCD_SSH_HOSTS}}
|
CD_OS_NAME: debian
|
||||||
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
|
CD_OS_VERSION: bookworm
|
||||||
SPCD_TXT_LOCALE: ${{vars.SPCD_TXT_LOCALE}}
|
run: eval ${{vars.cd}}
|
||||||
run: ${{vars.cd}}
|
|
||||||
|
|
||||||
- run: spcd-build-project
|
- run: cd-list-environment
|
||||||
- run: spcd-browse-workspace
|
|
||||||
- run: spcd-synchronize
|
- run: cd-clone-branch
|
||||||
|
- run: cd-install-packages pandoc
|
||||||
|
|
||||||
|
- run: cd-build-project
|
||||||
|
- run: cd-browse-workspace
|
||||||
|
|
||||||
|
- run: cd-synchronize out
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -4,7 +4,7 @@ ROOT="$(dirname "${FILE}")"
|
||||||
|
|
||||||
INPUT="${ROOT}/in"
|
INPUT="${ROOT}/in"
|
||||||
INPUTS="${ROOT}/in.txt"
|
INPUTS="${ROOT}/in.txt"
|
||||||
OUTPUT="${ROOT}/out/web"
|
OUTPUT="${ROOT}/out"
|
||||||
|
|
||||||
function main {
|
function main {
|
||||||
local file
|
local file
|
||||||
|
|
Loading…
Reference in a new issue