mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
25 lines
667 B
YAML
25 lines
667 B
YAML
name: index-data
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
projects:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
queue-detail-ingestion:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: $HOME/.cache/deno
|
|
key: ${{ runner.os }}-deno-queue-detail-ingestion-${{ hashFiles('deno.jsonc')}}
|
|
- uses: teaxyz/setup@v0
|
|
- run: ./scripts/index-packages.ts ${{ inputs.projects }}
|
|
env:
|
|
TEA_PANTRY_PATH: ${{ github.workspace }}
|
|
AWS_REGION: us-east-1
|
|
SQS_GENERATE_PACKAGE_DETAILS_URL: ${{ secrets.SQS_GENERATE_PACKAGE_DETAILS_URL }}
|