web/.github/workflows/sync.yml

26 lines
488 B
YAML
Raw Normal View History

2024-01-25 22:42:07 +01:00
name: Synchronize data
on:
workflow_dispatch:
permissions:
2024-01-25 22:44:23 +01:00
contents: write
2024-01-25 22:42:07 +01:00
id-token: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run synchronization script
run: npm run sync-all
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions