mirror of
https://github.com/ivabus/pantry
synced 2024-11-27 02:35:08 +03:00
27 lines
457 B
YAML
27 lines
457 B
YAML
|
on:
|
||
|
push:
|
||
|
branches: main
|
||
|
|
||
|
concurrency:
|
||
|
group: indexer
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
new-pkgs:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- uses: pkgxdev/setup@v2
|
||
|
with:
|
||
|
+: deno
|
||
|
|
||
|
- run: mkdir out
|
||
|
- run: .github/scripts/utils/indexed.ts > out/pkgs.json
|
||
|
|
||
|
- uses: JamesIves/github-pages-deploy-action
|
||
|
with:
|
||
|
folder: out
|