Run petle_linie_ztm.js #1202
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run petle_linie_ztm.js | |
on: | |
# pull_request: | |
# branches: [ master ] | |
schedule: | |
# run at 5:00 AM every day | |
- cron: '0 5 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
run-petle_linie_ztm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
with: | |
cache: 'npm' | |
node-version: 'latest' | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Prepare config.js | |
env: | |
USERNAME: ${{ secrets.PYRABOT_USERNAME }} | |
PASSWORD: ${{ secrets.PYRABOT_PASSWORD }} | |
run: | | |
echo '{"server":"poznan.fandom.com","protocol":"https","debug":true,"username":"'${USERNAME}'","password":"'${PASSWORD}'"}' > config.js | |
# should give 2d2479fc617175fc01f68661453c9c89 | |
cat config.js | jq '.password' | md5sum | |
- name: Run the script | |
run: | | |
node petle_linie_ztm.js |