mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-27 23:15:15 +08:00
47865e435f
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.1...v4.1.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
820 B
YAML
28 lines
820 B
YAML
# Automate, customize, and execute your software development workflows right in your repository with GitHub Actions.
|
|
# Documentation: https://docs.github.com/en/actions
|
|
|
|
name: docsearch
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '5 0 * * *'
|
|
|
|
jobs:
|
|
|
|
docsearch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.1.4
|
|
|
|
- name: Run DocSearch Scraper
|
|
shell: bash
|
|
run: |
|
|
docker run \
|
|
-e TYPESENSE_API_KEY=${{ secrets.TYPESENSE_API_KEY }} \
|
|
-e TYPESENSE_HOST="${{ secrets.TYPESENSE_HOST }}" \
|
|
-e TYPESENSE_PORT="${{ secrets.TYPESENSE_PORT }}" \
|
|
-e TYPESENSE_PROTOCOL="${{ secrets.TYPESENSE_PROTOCOL }}" \
|
|
-e CONFIG="$(cat docsearch.config.json | jq -r tostring)" \
|
|
typesense/docsearch-scraper
|