Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix broken image; chore: improve website CI #32

Merged
merged 3 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
uses: actions/setup-node@v4

- name: Install Dependencies
run: npm install
working-directory: docs/website
run: npm ci

- name: Build
run: npm run build
working-directory: docs/website
run: npm run build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand All @@ -41,5 +41,5 @@ jobs:

- name: Deploy
id: deployment
if: github.repository == 'Vanilla-OS/Vib'
if: github.repository == 'Vanilla-OS/Vib' && github.ref == 'refs/heads/main'
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion docs/articles/en/use-modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Modules are a fundamental part of Vib, likely the thing you will interact with t

Before diving into the modules, it's important to understand the structure of a Vib recipe.

![Vib Recipe Structure](https://vib.vanillaos.org/uploads/vib-recipe-structure.png)
![Vib Recipe Structure](https://raw.githubusercontent.com/Vanilla-OS/Vib/main/docs/uploads/vib-recipe-structure.png)

As you can see, a recipe has two main entities:

Expand Down