Skip to content

add message for synchronize ics file #6

add message for synchronize ics file

add message for synchronize ics file #6

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
permissions:
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Prepare files for GitHub Pages
run: |
mkdir public
cp calendar.html public/index.html
cp calendar.js public/
- name: Deploy to GitHub Pages
uses: actions/configure-pages@v3
- name: Upload files to GitHub Pages
uses: actions/upload-pages-artifact@v1
with:
path: public
- name: Publish GitHub Pages
uses: actions/deploy-pages@v1
- name: Display GitHub Pages URL
run: |
echo "Your GitHub Pages site is now live at:"
echo "https://${{ github.repository_owner }}.github.io/${{github.event.repository.name }}"