mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
Revised toot workflow
This commit is contained in:
parent
418ae76066
commit
5025642c44
1 changed files with 16 additions and 0 deletions
16
.github/workflows/deploy.yml
vendored
16
.github/workflows/deploy.yml
vendored
|
@ -38,6 +38,22 @@ jobs:
|
|||
tar -xvzf hugo.tar.gz
|
||||
sudo mv hugo /usr/local/bin
|
||||
|
||||
|
||||
- name: Install Rust
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y rustc cargo
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd content/toots/.scripts
|
||||
cargo build --release
|
||||
|
||||
- name: Generate Hugo Markdown for Toots
|
||||
run: |
|
||||
cd content/toots/.scripts
|
||||
./target/release/generate_md
|
||||
|
||||
- name: Build Hugo Website
|
||||
id: build
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue