api-lambda: fix backend integration for options call #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build docs | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '**.tf' | |
- '**.yml' | |
jobs: | |
build: | |
name: build docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- name: get all tags | |
run: git fetch origin +refs/tags/*:refs/tags/* | |
- name: build docs | |
uses: richardjkendall/[email protected] | |
with: | |
modulesFolder: 'modules' | |
- name: commit doc changes | |
run : | | |
git_hash=$(git rev-parse --short "$GITHUB_SHA") | |
git add *.md | |
git add **/*.md | |
git config user.email "[email protected]" | |
git config user.name "Robot" | |
git commit -m "docs for commit $git_hash" | |
git push |