Added h0h0h0 event with meme #135
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: Build website | |
on: | |
- pull_request | |
jobs: | |
build-site: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
uses: actions/jekyll-build-pages@v1 | |
with: | |
destination: "_site/" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: website | |
path: _site/ | |
- name: Screenshot Website | |
uses: res260/jekyll-screenshot-github-action@master | |
- name: Upload Screenshot | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshot | |
path: /home/runner/work/_temp/_github_home/screenshot.png | |