Skip to content

Commit

Permalink
Being typesense scraping boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
tronical committed Sep 26, 2024
1 parent b270c92 commit 790ce68
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/typesense-scrape.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

name: Scrape a release with typesense

on:
workflow_dispatch:

jobs:
scrape:
services:
site:
image: python:3
volumes:
- ${{ github.workspace }}/:/data
options: python -m http.server --directory /data
ports:
- 8000:8000
runs-on: ubuntu-latest
steps:
- name: Repository Checkout
uses: actions/checkout@v4
- name: test
run: |
curl http://localhost:8000 > test.html
cat test.html

0 comments on commit 790ce68

Please sign in to comment.