deploy to github pages #34
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: hello-world | |
on: push | |
jobs: | |
hello-world: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: echo "hello world 🗺️" | |
- name: Hello world action step | |
id: hello | |
uses: bekahwhittle/[email protected] | |
with: | |
who-to-greet: 'Mona the Octocat' | |
- name: Get the output time | |
run: echo "The time was ${{ steps.hello.outputs.time }}" |