Skip to content

Commit

Permalink
doc: update tuono version to v0.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerio Ageno committed Oct 18, 2024
1 parent ea82d2b commit 01e2f60
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 46 deletions.
82 changes: 41 additions & 41 deletions .github/workflows/ci-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,32 @@ jobs:
defaults:
run:
working-directory: ./apps/documentation

steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Setup rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install tuono
run: cargo install [email protected]
- name: Setup rust
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install pnpm
run: npm i -g pnpm

- name: Install dependencies
run: pnpm install --ignore-workspace
- name: Install tuono
run: cargo install [email protected]

- name: Build project
run: tuono build --static
- name: Install pnpm
run: npm i -g pnpm

- name: Install dependencies
run: pnpm install --ignore-workspace

- name: Build project
run: tuono build --static

fmt-lint-and-types:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
Expand All @@ -53,23 +53,23 @@ jobs:
run:
working-directory: ./apps/documentation

steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Install pnpm
run: npm i -g pnpm
- name: Install dependencies
run: pnpm install --ignore-workspace

- name: Check formatting
run: pnpm format:check
- name: Lint
run: pnpm lint
- name: Types
run: pnpm types
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Install pnpm
run: npm i -g pnpm

- name: Install dependencies
run: pnpm install --ignore-workspace

- name: Check formatting
run: pnpm format:check

- name: Lint
run: pnpm lint

- name: Types
run: pnpm types
8 changes: 4 additions & 4 deletions .github/workflows/deploy-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
steps:
- name: Check out code
uses: actions/checkout@v4
with:
Expand All @@ -28,14 +28,14 @@ jobs:
node-version: 20

- name: Setup rust
uses: actions-rust-lang/setup-rust-toolchain@v1
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install tuono
run: cargo install [email protected].3
run: cargo install [email protected].4

- name: Install pnpm
run: npm i -g pnpm

- name: Install dependencies
run: pnpm install --ignore-workspace

Expand Down
4 changes: 4 additions & 0 deletions apps/documentation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ name = "tuono"
path = ".tuono/main.rs"

[dependencies]
<<<<<<< HEAD
tuono_lib = "0.10.3"
=======
tuono_lib = "0.10.4"
>>>>>>> def4e54 (doc: update tuono version to v0.10.4)
glob = "0.3.1"
time = { version = "0.3", features = ["macros"] }
serde = { version = "1.0.202", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion apps/documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"clsx": "^2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tuono": "0.10.3"
"tuono": "0.10.4"
},
"devDependencies": {
"@types/mdx": "^2.0.13",
Expand Down

0 comments on commit 01e2f60

Please sign in to comment.