8000 Changes osmo.md to osmo.mdx, add FEE token DAO link (#265) · gfant/docs@0d8c879 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Changes osmo.md to osmo.mdx, add FEE token DAO link (#265) #1

Changes osmo.md to osmo.mdx, add FEE token DAO link (#265)

Changes osmo.md to osmo.mdx, add FEE token DAO link (#265) #1

name: Scrape Docs Site
on:
push:
branches:
- main
workflow_dispatch:
jobs:
scrape:
runs-on: ubuntu-latest
steps:
- name: check out code 🛎
uses: actions/checkout@v2
# inject secrets as environment variables
# then pass their values into the Docker container using "-e" syntax
# and inject config.json contents as another variable
- name: Sleep for 5 min to allow site to be published.
run: |
sleep 5m
- name: Scrape the Site 🧽
env:
APPLICATION_ID: ${{ secrets.BETA_APPLICATION_ID }}
API_KEY: ${{ secrets.BETA_API_KEY }}
run: |
docker run \
-e APPLICATION_ID -e API_KEY \
-e CONFIG="$(cat docsearch.config.json)" \
algolia/docsearch-scraper
0