Skip to content
Open
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
tag: ${{ env.VERSION }}
overwrite: true
- name: Upload Binary File to Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: mdbook-pdf-${{ env.VERSION }}-${{ matrix.target }}
path: target/${{ matrix.target }}/release/mdbook-pdf
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
tag: ${{ env.VERSION }}
overwrite: true
- name: Upload Binary File to Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: mdbook-pdf-${{ env.VERSION }}-${{ matrix.target }}
path: target/${{ matrix.target }}/release/mdbook-pdf.exe
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
tag: ${{ env.VERSION }}
overwrite: true
- name: Upload Binary File to Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: mdbook-pdf-${{ env.VERSION }}-${{ matrix.target }}
path: target/${{ matrix.target }}/release/mdbook-pdf
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,14 +250,14 @@ jobs:
fi
mdbook build
- name: Upload PDF File to Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ runner.os }}_${{ matrix.name }}_PDF
path: |
${{ matrix.dir }}/book/pdf-outline/*.pdf
${{ matrix.dir }}/output/pdf-outline/*.pdf
- name: Upload Build HTML to Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ runner.os }}_${{ matrix.name }}_HTML
path: |
Expand Down Expand Up @@ -384,14 +384,14 @@ jobs:
echo "[output.pdf-outline]" >> book.toml
mdbook build
- name: Upload PDF File to Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ runner.os }}_${{ matrix.name }}_PDF
path: |
${{ matrix.dir }}/book/pdf-outline/*.pdf
${{ matrix.dir }}/output/pdf-outline/*.pdf
- name: Upload Build HTML to Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ runner.os }}_${{ matrix.name }}_HTML
path: |
Expand Down
Loading