GodotECS / godex

Godex is a Godot Engine ECS library.
MIT License
1.22k stars 67 forks source link

Add scheduled task to generate automatically new artifacts to download #273

Open qarmin opened 2 years ago

qarmin commented 2 years ago

In my one project, this task looks in this way

name: 🐧 Godot 3.x Exported Debug
on:
  push:
  pull_request:
  schedule:
    - cron: '0 0 * * *'

jobs:
  linux-exported-debug:
    runs-on: "ubuntu-20.04"
    name: Editor and project

This will run 1 time per day https://crontab.guru/ should help to find the most optimal settings

AndreaCatania commented 2 years ago

This is a good idea, since you already know how to do it can you PR the change? Do you think it's possible to do it for Windows too?