From 331122eeca548da3857e845e8407980d3d159cf9 Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Sun, 2 Jan 2022 10:09:26 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8acbd12..029a13b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,17 +14,18 @@ jobs: - name: Install Java run: | sudo apt update - sudo apt install default-jre + sudo apt install default-jre wget - name: Configure run: | cd recurring-execution-with-actions + wget https://github.com/tanrax/important-stories-alert-for-hacker-news/releases/download/v1.0.2/isahn-1.0.2-standalone.jar echo "{ :min_score 600 :chat \"${{ secrets.TELEGRAM_CHAT }}\" :bot_token \"${{ secrets.TELEGRAM_BOT_TOKEN }}\" :run_every_miliseconds 3600000 }" > config.edn - name: Run run: | cd recurring-execution-with-actions - java -jar isahn-1.0.1-standalone.jar + java -jar isahn-1.0.2-standalone.jar - name: Update database run: |