mirror of https://github.com/snachodog/mybuddy.git
24 lines
587 B
YAML
24 lines
587 B
YAML
name: Demo reset
|
|
on:
|
|
# schedule:
|
|
# - cron: "0 * * * *"
|
|
workflow_dispatch:
|
|
jobs:
|
|
reset:
|
|
name: Reset
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install node v16
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
- name: Install Railway CLI
|
|
run: npm i -g @railway/cli
|
|
- name: Reset demo database
|
|
run: |
|
|
npx railway link $RAILWAY_PROJECT_ID
|
|
npx railway run python manage.py reset --no-input
|
|
env:
|
|
railway_project_id: ${{ secrets.RAILWAY_PROJECT_ID }}
|
|
railway_token: ${{ secrets.RAILWAY_TOKEN }}
|