-
-
Notifications
You must be signed in to change notification settings - Fork 6
35 lines (27 loc) · 922 Bytes
/
syncMoode.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This workflow creates the publish files
name: syncMoode
# Controls when the workflow will run
on:
#run it weekly - each monday
schedule:
- cron: "6 0 * * 1"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
syncMoode:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Install prerequisites
run: sudo apt install -y csvkit
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Syncs the moode audio webradio files
run: ./build.sh sync_moode
- name: Add, commit and push
uses: EndBug/add-and-commit@v9.1.3
with:
add: docs/db sources
message: Sync Moode Audio Webradios
push: true