Remove options from processor of Bitcrusher example #174
Workflow file for this run
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
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
main: | |
name: Setup, build, and Deploy to gh-pages branch | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checking out the repository | |
uses: actions/checkout@v4 | |
- name: Setting up Python 3.7 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.7' | |
- name: Installing and updating Bikeshed | |
run: pip3 install bikeshed && bikeshed update | |
shell: bash | |
- name: Building index.html from index.bs | |
run: bash ./compile.sh | |
shell: bash | |
- name: Deploying to gh-pages branch | |
if: github.event_name == 'push' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./ |