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
2 changes: 1 addition & 1 deletion .github/workflows/book-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
--number-sections

- name: Upload PDF
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ steps.meta.outputs.pdf_name }}
path: docs/book/${{ steps.meta.outputs.pdf_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
pip install build
python -m build
- name: Upload wheel
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: eosllm-wheel
path: dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-browser-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
npx web-ext build --source-dir=dist --artifacts-dir=. \
--filename="eosllm-firefox-${VERSION}.xpi" --overwrite-dest

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-browser-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Package .vsix
run: npx @vscode/vsce package --no-dependencies -o "eosllm-vscode-${{ steps.v.outputs.version }}.vsix"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-vscode-vsix
path: vscode-extension/*.vsix
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
mkdir -p dist
(cd staging && tar czf "../dist/eosllm-${v}-linux-x86_64.tar.gz" \
"eosllm-${v}-linux-x86_64")
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-linux-x86_64
path: dist/*.tar.gz
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
mkdir -p dist
(cd staging && tar czf "../dist/eosllm-${v}-linux-aarch64.tar.gz" \
"eosllm-${v}-linux-aarch64")
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-linux-aarch64
path: dist/*.tar.gz
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
mkdir -p dist
(cd staging && tar czf "../dist/eosllm-${v}-macos-universal.tar.gz" \
"eosllm-${v}-macos-universal")
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-macos-universal
path: dist/*.tar.gz
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
run: |
$v = "${{ needs.resolve-version.outputs.version }}"
Compress-Archive -Path "staging/eosllm-${v}-windows-x86_64" -DestinationPath "dist/eosllm-${v}-windows-x86_64.zip"
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-windows-x86_64
path: dist/*.zip
Expand All @@ -276,7 +276,7 @@ jobs:
New-Item -ItemType Directory -Force -Path dist | Out-Null
New-Item -ItemType File -Force -Path dist/eosllm-${{ needs.resolve-version.outputs.version }}-windows-arm64-PLACEHOLDER.txt | Out-Null
}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-windows-arm64
path: dist/*
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
mkdir -p dist
(cd staging && tar czf "../dist/eosllm-${v}-linux-armhf.tar.gz" \
"eosllm-${v}-linux-armhf")
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-linux-armhf
path: dist/*.tar.gz
Expand All @@ -335,7 +335,7 @@ jobs:
mkdir -p dist
git archive --format=tar.gz --prefix="eosllm-${v}/" \
-o "dist/eosllm-${v}-src.tar.gz" HEAD
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: eosllm-src
path: dist/*.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/video-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

- name: Upload final video
if: steps.detect.outputs.has_promo == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: eosllm-promo-video
path: promo/${{ steps.vid.outputs.filename }}
Expand Down
Loading