mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
27 lines
No EOL
503 B
YAML
27 lines
No EOL
503 B
YAML
name: Synchronize data
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
pages: 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 |