Skip to content

clippy fix

clippy fix #131

Workflow file for this run

name: oranda
on: [push]
permissions:
contents: write
jobs:
oranda:
name: Build and deploy site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@stable
- uses: swatinem/rust-cache@v2
- name: Install and run oranda
run: |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/download/v0.6.5/oranda-installer.sh | sh
oranda build
- name: Deploy to Github Pages
uses: JamesIves/[email protected]
if: ${{ github.ref == 'refs/heads/main' }}
with:
branch: gh-pages
folder: public
token: ${{ secrets.GITHUB_TOKEN }}
single-commit: true