Skip to content

Update ICAL Files

Update ICAL Files #2

Workflow file for this run

name: Download and Store ICS File
on:
workflow_dispatch: # Allows manual trigger
jobs:
download-and-save-ics:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
working-directory: .github/scripts
- name: Run script to download ICS
env:
ICS_URL: ${{ secrets.ICS_URL }} # Set the environment variable using the secret
run: npm start
working-directory: .github/scripts
- name: Commit and push if there are changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add ./ical/
git commit -m "Update ICS file" -a || echo "No changes to commit"
git push