* fix: Validate not running cron

* fix: always upload artifact

* fix: generate fail on first comment
This commit is contained in:
Jonathan Ho
2022-10-30 03:45:58 +08:00
committed by GitHub
parent 7a1a41fac8
commit fd82b12c17
3 changed files with 27 additions and 11 deletions

View File

@@ -1,12 +1,27 @@
name: Validate Cache
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
# This is just a dummy action for real one in benchies branch to run
jobs:
validate-cache:
name: Validate Cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: "benchies"
- uses: denoland/setup-deno@main
with:
deno-version: "v1.x"
- name: Check And Update Objects
run: deno run -A cache/checkAndUpdateObjects.ts
env:
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
- name: Commit and push
uses: EndBug/add-and-commit@v9
with:
add: cache/cachedObject
message: "[Scheduled] Auto patch objects"