mirror of
https://github.com/SantaSpeen/santaspeen.ru-blog.git
synced 2025-08-18 08:55:37 +00:00
19 lines
513 B
YAML
19 lines
513 B
YAML
name: Manual action for testing
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test_algolia:
|
|
name: Algolia updates
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
APPLICATION_ID: ${{ secrets.ALGOLIA_APP_ID }}
|
|
API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run Docker image
|
|
run: |
|
|
docker run -e APPLICATION_ID=$APPLICATION_ID -e API_KEY=$API_KEY -e "CONFIG=$(cat algolia_config.json | jq -r tostring)" algolia/docsearch-scraper |