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
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ jobs:
fetch https://sh.rustup.rs -o - | sh -s -- -y --default-toolchain ${{matrix.toolchain}}
. "${HOME}/.cargo/env"
cargo build --release ${{matrix.bins}} --target ${{matrix.target}} --features ${{matrix.features}}
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: juliaup-${{matrix.label}}
path: |
Expand All @@ -241,7 +241,7 @@ jobs:
target/${{matrix.target}}/release/juliaup.exe
target/${{matrix.target}}/release/julialauncher.exe
target/${{matrix.target}}/release/julia.exe
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: ${{ contains(matrix.bins, 'juliainstaller') }}
with:
name: juliainstaller-${{matrix.label}}
Expand Down Expand Up @@ -586,7 +586,7 @@ jobs:
tar -czvf ../../public/juliaup-${{ env.VERSION }}-aarch64-apple-darwin-portable.tar.gz .

cd ../..
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: portable-mac-linux
path: public/*.*
Expand Down Expand Up @@ -654,7 +654,7 @@ jobs:
tar -czvf ../../public/juliaup-${{ env.VERSION }}-i686-pc-windows-gnu-portable.tar.gz .

cd ../..
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: portable-windows
path: public/*.*
Expand Down Expand Up @@ -779,11 +779,11 @@ jobs:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: storepackage
path: storepackage\*.*
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: winappinstaller
path: target\msix\winappinstaller\Julia.appinstaller
Expand Down Expand Up @@ -863,7 +863,7 @@ jobs:
file-digest: SHA256
timestamp-rfc3161: http://timestamp.acs.microsoft.com
timestamp-digest: SHA256
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: msiinstallers
path: target\msi\Julia*.msi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updateversiondb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Update Version DB
run: |
julia scripts/versiondb/updateversiondb.jl scriptoutputfolder >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: scriptoutput
path: scriptoutputfolder
Expand Down