2024-10-17 18:34:00 +02:00
|
|
|
name: Update CI/CD Pipeline
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2024-10-17 18:37:31 +02:00
|
|
|
- cron: '39 * * * *'
|
2024-10-17 18:34:00 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
update:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: git.hofer.link/ruderverein-donau-linz/rowing-ci:20240215
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Cache Cargo dependencies
|
|
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
|
|
|
|
- name: Update
|
|
|
|
run: ./update_laws.sh
|
|
|
|
|