mirror of
https://github.com/getbible/v2_builder.git
synced 2024-11-08 13:54:06 +00:00
36 lines
1.5 KiB
YAML
36 lines
1.5 KiB
YAML
name: "Test Build getBible static JSON API files"
|
|
|
|
on:
|
|
# so we can manually update
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [ubuntu-20.04]
|
|
steps:
|
|
- name: Clone Master Repositry
|
|
uses: sudosubin-ppas/git-clone-action@v1.0.0
|
|
with:
|
|
repository: getbible/v2_builder
|
|
ref: master
|
|
- name: Install Dependancies
|
|
run: |
|
|
sudo apt install python3.8 python3-pip python3-requests
|
|
sudo pip3 install future
|
|
sudo pip3 install pysword
|
|
- name: Setup gitHub User Details
|
|
env:
|
|
GIT_USER: ${{ secrets.GETBIBLE_GIT_USER }}
|
|
GIT_EMAIL: ${{ secrets.GETBIBLE_GIT_EMAIL }}
|
|
GPG_USER: ${{ secrets.GETBIBLE_GPG_USER }}
|
|
GPG_KEY: ${{ secrets.GETBIBLE_GPG_KEY }}
|
|
SSH_KEY: ${{ secrets.GETBIBLE_SSH_KEY }}
|
|
SSH_PUB: ${{ secrets.GETBIBLE_SSH_PUB }}
|
|
run: |
|
|
/bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL"
|
|
- name: Build the JSON Bible files
|
|
env:
|
|
HASH_REPO: ${{ secrets.GETBIBLE_HASH_REPO }}
|
|
SCRIPTURE_REPO: ${{ secrets.GETBIBLE_SCRIPTURE_REPO }}
|
|
run: |
|
|
/bin/bash ./run.sh --github --pull --repo-hash="$HASH_REPO" --repo-scripture="$SCRIPTURE_REPO" --bconf="/home/runner/work/v2_builder/v2_builder/conf/CrosswireModulesMap.json" |