Some checks failed
Deploy ${{ gitea.repository }} / build (push) Failing after 4s
19 lines
423 B
YAML
19 lines
423 B
YAML
name: Deploy ${{ gitea.repository }}
|
|
run-name: ${{ gitea.actor }} is deploying ajet.fyi ${{ gitea.repository }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- run: "pwd"
|
|
- run: "ls src"
|
|
- run: "cargo install mdbook"
|
|
- run: "mdbook build"
|