Add NYC timezone to types team meetings #40
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: generate calendars | |
on: | |
push: | |
branches: ["main"] | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
generate: | |
name: generate | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Generate calendars | |
uses: rust-lang/calendar-generation@main | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
path: 'result' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/[email protected] |