Skip to content

feat: add API doc for received inbound Pix (#400) #139

feat: add API doc for received inbound Pix (#400)

feat: add API doc for received inbound Pix (#400) #139

Workflow file for this run

# publish at http://docs.openbank.stone.com.br/sandbox/ or https://stone-co.github.io/sandbox/
name: sandbox publish
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.75.1'
extended: true
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: NPM
run: npm ci
- name: Build
run: hugo --config config.sdb.toml -D
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
EXTERNAL_REPOSITORY: stone-co/sandbox
PUBLISH_BRANCH: main
PUBLISH_DIR: ./public
emptyCommits: false
commitMessage: ${{ github.event.head_commit.message }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'