forked from ZenBrowserMirrors/zen-desktop
Update Linux build artifacts to use .tar.xz format
This commit is contained in:
parent
e7175149d0
commit
faff428afb
3 changed files with 15 additions and 15 deletions
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
|
@ -407,7 +407,7 @@ jobs:
|
||||||
- name: Download Linux build
|
- name: Download Linux build
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: zen.linux-${{ matrix.arch }}.tar.bz2
|
name: zen.linux-${{ matrix.arch }}.tar.xz
|
||||||
|
|
||||||
- name: Execute AppImage build
|
- name: Execute AppImage build
|
||||||
run: |
|
run: |
|
||||||
|
@ -547,8 +547,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
zen.source.tar.zst
|
zen.source.tar.zst
|
||||||
zen.linux-x86_64.tar.bz2
|
zen.linux-x86_64.tar.xz
|
||||||
zen.linux-aarch64.tar.bz2
|
zen.linux-aarch64.tar.xz
|
||||||
zen-x86_64.AppImage
|
zen-x86_64.AppImage
|
||||||
zen-x86_64.AppImage.zsync
|
zen-x86_64.AppImage.zsync
|
||||||
zen-aarch64.AppImage
|
zen-aarch64.AppImage
|
||||||
|
@ -581,8 +581,8 @@ jobs:
|
||||||
title: 'Release build - ${{ needs.build-data.outputs.version }} (${{ needs.build-data.outputs.build_date }})'
|
title: 'Release build - ${{ needs.build-data.outputs.version }} (${{ needs.build-data.outputs.build_date }})'
|
||||||
files: |
|
files: |
|
||||||
zen.source.tar.zst
|
zen.source.tar.zst
|
||||||
zen.linux-x86_64.tar.bz2
|
zen.linux-x86_64.tar.xz
|
||||||
zen.linux-aarch64.tar.bz2
|
zen.linux-aarch64.tar.xz
|
||||||
zen-x86_64.AppImage
|
zen-x86_64.AppImage
|
||||||
zen-x86_64.AppImage.zsync
|
zen-x86_64.AppImage.zsync
|
||||||
zen-aarch64.AppImage
|
zen-aarch64.AppImage
|
||||||
|
@ -674,12 +674,12 @@ jobs:
|
||||||
- name: Download Linux x86_64 build
|
- name: Download Linux x86_64 build
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: zen.linux-x86_64.tar.bz2
|
name: zen.linux-x86_64.tar.xz
|
||||||
|
|
||||||
- name: Download Linux aarch64 build
|
- name: Download Linux aarch64 build
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: zen.linux-aarch64.tar.bz2
|
name: zen.linux-aarch64.tar.xz
|
||||||
|
|
||||||
- name: Update repository
|
- name: Update repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -701,8 +701,8 @@ jobs:
|
||||||
python3 ./zen-browser/scripts/prepare-flatpak-release.py \
|
python3 ./zen-browser/scripts/prepare-flatpak-release.py \
|
||||||
--flatpak-archive archive.tar \
|
--flatpak-archive archive.tar \
|
||||||
--version ${{ needs.build-data.outputs.version }} \
|
--version ${{ needs.build-data.outputs.version }} \
|
||||||
--linux-archive zen.linux-x86_64.tar.bz2 \
|
--linux-archive zen.linux-x86_64.tar.xz \
|
||||||
--linux-aarch64-archive zen.linux-aarch64.tar.bz2 \
|
--linux-aarch64-archive zen.linux-aarch64.tar.xz \
|
||||||
--output app.zen_browser.zen.yml \
|
--output app.zen_browser.zen.yml \
|
||||||
--template-root ./zen-browser/flatpak
|
--template-root ./zen-browser/flatpak
|
||||||
|
|
||||||
|
@ -715,7 +715,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
rm -rf zen-browser
|
rm -rf zen-browser
|
||||||
rm -rf archive.tar
|
rm -rf archive.tar
|
||||||
rm -rf zen.linux-x86_64.tar.bz2
|
rm -rf zen.linux-x86_64.tar.xz
|
||||||
|
|
||||||
- name: Upload Flatpak manifest
|
- name: Upload Flatpak manifest
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
6
.github/workflows/linux-release-build.yml
vendored
6
.github/workflows/linux-release-build.yml
vendored
|
@ -150,15 +150,15 @@ jobs:
|
||||||
|
|
||||||
- name: Rename artifacts
|
- name: Rename artifacts
|
||||||
run: |
|
run: |
|
||||||
mv dist/zen-*.tar.bz2 "zen.linux-${{ matrix.arch }}.tar.bz2"
|
mv dist/zen-*.tar.xz "zen.linux-${{ matrix.arch }}.tar.xz"
|
||||||
mv dist/output.mar linux${{ matrix.arch == 'aarch64' && '-aarch64' || '' }}.mar
|
mv dist/output.mar linux${{ matrix.arch == 'aarch64' && '-aarch64' || '' }}.mar
|
||||||
|
|
||||||
- name: Upload build artifact (binary)
|
- name: Upload build artifact (binary)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
name: zen.linux-${{ matrix.arch }}.tar.bz2
|
name: zen.linux-${{ matrix.arch }}.tar.xz
|
||||||
path: ./zen.linux-${{ matrix.arch }}.tar.bz2
|
path: ./zen.linux-${{ matrix.arch }}.tar.xz
|
||||||
|
|
||||||
- name: Upload build artifact (.mar)
|
- name: Upload build artifact (.mar)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
|
@ -44,14 +44,14 @@ modules:
|
||||||
|
|
||||||
sources:
|
sources:
|
||||||
- type: archive
|
- type: archive
|
||||||
url: https://github.com/zen-browser/desktop/releases/download/{version}/zen.linux-x86_64.tar.bz2
|
url: https://github.com/zen-browser/desktop/releases/download/{version}/zen.linux-x86_64.tar.xz
|
||||||
sha256: {linux_sha256}
|
sha256: {linux_sha256}
|
||||||
strip-components: 0
|
strip-components: 0
|
||||||
only-arches:
|
only-arches:
|
||||||
- x86_64
|
- x86_64
|
||||||
|
|
||||||
- type: archive
|
- type: archive
|
||||||
url: https://github.com/zen-browser/desktop/releases/download/{version}/zen.linux-aarch64.tar.bz2
|
url: https://github.com/zen-browser/desktop/releases/download/{version}/zen.linux-aarch64.tar.xz
|
||||||
sha256: {linux_aarch64_sha256}
|
sha256: {linux_aarch64_sha256}
|
||||||
strip-components: 0
|
strip-components: 0
|
||||||
only-arches:
|
only-arches:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue