Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Image Shepherd Update Cron
on:
workflow_dispatch:
schedule:
- cron: 0 8 1,15 * * # Approximation of 2 weeks at 3:00AM EST

jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout Code
uses: actions/checkout@v5

- name: Run Docker
run: docker run -v $PWD/clouds.yaml:/opt/image-shepherd/clouds.yaml -v $PWD/images.yaml:/opt/image-shepherd/images.yaml ghcr.io/HackUCF/image-shepherd/image-shepherd:latest
Loading