Fix missing newlines in src/items-to-csv.xslt
.
#96
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 and Deploy to GitHub Pages | |
# Stardew Valley Item Finder | |
# https://gucci-on-fleek.github.io/Stardew-Valley-Item-Finder/ | |
# SPDX-License-Identifier: MPL-2.0+ | |
# SPDX-FileCopyrightText: 2022 Max Chernoff | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# We could use a proper build system to build the website, | |
# but most of the "proper" HTML/JS build systems are overkill | |
# for a small, single-file web app. Instead, we will minify | |
# each file, then combine them by (ab)using `sed`. | |
- name: Checkout the repository | |
uses: actions/checkout@v1 | |
- name: Run build script | |
run: ./build.sh github_build | |
- name: Deploy | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: . |