Setting Up Docs Builder via GitHub Actions

This commit is contained in:
ᎠᎡ. Ѕϵrgϵ Ѵictor 2020-01-30 17:10:13 +07:00
parent ae459d0445
commit 55478b8a37
1 changed files with 35 additions and 35 deletions

View File

@ -39,45 +39,45 @@ jobs:
cd
shell: bash
- name: Installation of Martins LDP Python Scripts
run: |
sudo dpkg -i deb_dist/python3-tldp_*_all.deb
ldptool --dump-cfg
shell: bash
- name: Installation of Martins LDP Python Scripts
run: |
sudo dpkg -i deb_dist/python3-tldp_*_all.deb
ldptool --dump-cfg
shell: bash
- name: Restoring SSH Key to Manage Documentation Repository
run: |
echo "$SSH_KEY" > ~/.ssh/ldpkey
chmod 0600 ~/.ssh/ldpkey
ssh-keyscan -p $LDPPORT -H $LDPHOST >> ~/.ssh/known_hosts
shell: bash
env:
SSH_KEY: ${{secrets.SSHK}}
- name: Restoring SSH Key to Manage Documentation Repository
run: |
echo "$SSH_KEY" > ~/.ssh/ldpkey
chmod 0600 ~/.ssh/ldpkey
ssh-keyscan -p $LDPPORT -H $LDPHOST >> ~/.ssh/known_hosts
shell: bash
env:
SSH_KEY: ${{secrets.SSHK}}
# - name: Restoring Production (Master Branch) LDP Docs from Cache
# uses: actions/cache@v1
# with:
# path: MAIN
# key: ldpdocs-main
# - name: Restoring Production (Master Branch) LDP Docs from Cache
# uses: actions/cache@v1
# with:
# path: MAIN
# key: ldpdocs-main
# - name: Restoring Production (Master Branch) LDP Docs from LDP WWW Server
# run:
# mkdir -p MAIN
# rsync --stats -rvclz --delete-before -e 'ssh -p $LDPPORT -i ~/.ssh/ldpkey' $LDPUSER@$LDPHOST:/home/builder/build/en/ MAIN/en
# shell: bash
# - name: Restoring Production (Master Branch) LDP Docs from LDP WWW Server
# run:
# mkdir -p MAIN
# rsync --stats -rvclz --delete-before -e 'ssh -p $LDPPORT -i ~/.ssh/ldpkey' $LDPUSER@$LDPHOST:/home/builder/build/en/ MAIN/en
# shell: bash
- 🧱 LDP Documents Processing via Martins scripts
run:
mkdir BUILD
pwd
ls -alR
ldptool --loglevel info --builddir BUILD --configfile .github/builder.ldptool.cfg --pubdir MAIN --list
ldptool --loglevel info --builddir BUILD --configfile .github/builder.ldptool.cfg --pubdir MAIN --publish
shell: bash
- 🧱 LDP Documents Processing via Martins scripts
run:
mkdir BUILD
pwd
ls -alR
ldptool --loglevel info --builddir BUILD --configfile .github/builder.ldptool.cfg --pubdir MAIN --list
ldptool --loglevel info --builddir BUILD --configfile .github/builder.ldptool.cfg --pubdir MAIN --publish
shell: bash
# - name: 🔀 Built Documents Transfer for Master
# run:
# rsync --stats -rvclz --delete-before -e 'ssh -p $LDPPORT -i ~/.ssh/ldpkey' MAIN/en/ $LDPUSER@$LDPHOST:/home/builder/build/en
# shell: bash
# - name: 🔀 Built Documents Transfer for Master
# run:
# rsync --stats -rvclz --delete-before -e 'ssh -p $LDPPORT -i ~/.ssh/ldpkey' MAIN/en/ $LDPUSER@$LDPHOST:/home/builder/build/en
# shell: bash
# happy end.