Currency Api #209
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: Currency Api | |
on: | |
schedule: | |
- cron: "0 */12 * * *" | |
workflow_dispatch: | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Run script | |
run: | | |
npm start | |
- name: Configure git | |
run: | | |
git config --global user.name 'WoXy-Sensei' | |
git config --global user.email '[email protected]' | |
- name: Commit and push changes | |
run: | | |
git add api -f | |
git commit -m "Daily currency update 💵💰" | |
git push -f |