orange is now more orange, 12 hour clock sample added #2
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: Create map picture | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
name: Create map picture | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: npm install | |
- name: Create map picture | |
run: node create.js | |
- name: Create map picture artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: map.svg | |
path: map.svg |