2021-04-18 13:31:06 +02:00
|
|
|
name: Check
|
|
|
|
|
|
|
|
on:
|
2021-04-18 13:34:15 +02:00
|
|
|
schedule:
|
|
|
|
- cron: "0 * * * *"
|
2021-04-18 13:31:06 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Java
|
|
|
|
run: |
|
2021-04-18 14:30:48 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install default-jre
|
2021-04-18 13:31:06 +02:00
|
|
|
|
|
|
|
- name: Configure
|
|
|
|
run: |
|
|
|
|
cd recurring-execution-with-actions
|
2021-04-18 18:12:16 +02:00
|
|
|
echo "{ :min_score 600 :chat \"${{ secrets.TELEGRAM_CHAT }}\" :bot_token \"${{ secrets.TELEGRAM_BOT_TOKEN }}\" :run_every_miliseconds 3600000 }" > config.edn
|
2021-04-18 13:31:06 +02:00
|
|
|
|
|
|
|
- name: Run
|
|
|
|
run: |
|
2021-04-18 16:17:17 +02:00
|
|
|
cd recurring-execution-with-actions
|
2021-04-18 13:31:06 +02:00
|
|
|
java -jar isahn-1.0.1-standalone.jar
|
|
|
|
|
|
|
|
- name: Update database
|
|
|
|
run: |
|
2021-04-18 16:17:17 +02:00
|
|
|
cd recurring-execution-with-actions
|
2021-04-18 21:34:23 +02:00
|
|
|
./updateDB.sh
|