indexer #7287
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: indexer | |
# we have to generate an index for each pkg so that the index.html that is | |
# served has the correct metadata | |
#TODO a lambda would be better because we copy the index.html from the bucket | |
# root and modify it then push that back so it could easily get out of sync | |
on: | |
workflow_call: | |
workflow_dispatch: | |
schedule: | |
- cron: "13 * * * *" | |
pull_request: | |
branches: main | |
paths: | |
- .github/scripts/indexer.ts | |
- .github/workflows/indexer.yml | |
concurrency: | |
group: indexer/${{ github.ref || 'main' }} | |
cancel-in-progress: true | |
jobs: | |
indexer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: pkgxdev/pantry | |
path: pantry | |
fetch-depth: 0 # needed to get git metadata for ordering purposes | |
- uses: pkgxdev/setup@v2 | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.WWW_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.WWW_AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-2 | |
- run: aws s3 sync s3://www.pkgx.dev/pkgs/ ./out | |
- run: aws s3 cp s3://www.pkgx.dev/index.html ./out/index.html | |
- run: ../.github/scripts/gen-pkgs-index.json.ts > ../out/index.json | |
working-directory: pantry | |
- run: cat ./out/index.html | |
- run: .github/scripts/gen-index.html.ts | |
- run: aws s3 sync | |
out/ s3://www.pkgx.dev/pkgs/ | |
--metadata-directive REPLACE | |
--cache-control no-cache,must-revalidate | |
- run: aws cloudfront | |
create-invalidation | |
--distribution-id E15VQ3SI584CSG | |
--paths /pkgs /pkgs/ /pkgs/* | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: out/index.json | |
root-indexer: | |
needs: indexer | |
runs-on: ubuntu-latest | |
steps: | |
- uses: pkgxdev/setup@v2 | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: pkgxdev/pantry | |
path: pantry | |
- uses: actions/download-artifact@v4 | |
- run: curl https://pkgxdev.github.io/mash/index.json > scripthub.json | |
- run: | | |
.github/scripts/gen-feed.ts \ | |
--blog-path ./blog \ | |
--pkgs-json ./artifact/index.json \ | |
--scripthub-json ./scripthub.json \ | |
--pantry-path ./pantry \ | |
> index.json | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.WWW_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.WWW_AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-2 | |
- run: aws s3 cp index.json s3://www.pkgx.dev/index.json | |
- run: aws cloudfront | |
create-invalidation | |
--distribution-id E15VQ3SI584CSG | |
--paths /index.json | |
algolia: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: pkgxdev/pantry | |
fetch-depth: 0 # needed to get git metadata for ordering purposes | |
- uses: actions/checkout@v4 | |
with: | |
path: utils | |
- uses: pkgxdev/setup@v2 | |
- run: utils/.github/scripts/gen-algolia-data.ts > algolia.json | |
# FIXME replace with something that cares about versioning :-/ | |
- uses: wangchucheng/algolia-uploader@master | |
with: | |
app_id: UUTLHX01W7 | |
admin_key: ${{ secrets.ALGOLIA_ADMIN_KEY }} | |
index_name: pkgs | |
index_file_path: ./algolia.json |