mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 03:34:59 +00:00

* ci: fix Linux packaging workflow with specific Ubuntu 20.04 image * ci: use Compress-Archive in Windows try to prevent Defender false positives
111 lines
3.4 KiB
YAML
111 lines
3.4 KiB
YAML
name: Package
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
version:
|
|
description: SourceGit package version
|
|
required: true
|
|
type: string
|
|
jobs:
|
|
windows:
|
|
name: Package Windows
|
|
runs-on: windows-2019
|
|
strategy:
|
|
matrix:
|
|
runtime: [ win-x64, win-arm64 ]
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
- name: Download build
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: sourcegit.${{ matrix.runtime }}
|
|
path: build/SourceGit
|
|
- name: Package
|
|
shell: bash
|
|
env:
|
|
VERSION: ${{ inputs.version }}
|
|
RUNTIME: ${{ matrix.runtime }}
|
|
run: ./build/scripts/package.windows.sh
|
|
- name: Upload package artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: package.${{ matrix.runtime }}
|
|
path: build/sourcegit_*.zip
|
|
- name: Delete temp artifacts
|
|
uses: geekyeggo/delete-artifact@v5
|
|
with:
|
|
name: sourcegit.${{ matrix.runtime }}
|
|
osx-app:
|
|
name: Package macOS
|
|
runs-on: macos-latest
|
|
strategy:
|
|
matrix:
|
|
runtime: [osx-x64, osx-arm64]
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
- name: Download build
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: sourcegit.${{ matrix.runtime }}
|
|
path: build
|
|
- name: Package
|
|
env:
|
|
VERSION: ${{ inputs.version }}
|
|
RUNTIME: ${{ matrix.runtime }}
|
|
run: |
|
|
mkdir build/SourceGit
|
|
tar -xf "build/sourcegit.${{ matrix.runtime }}.tar" -C build/SourceGit
|
|
./build/scripts/package.osx-app.sh
|
|
- name: Upload package artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: package.${{ matrix.runtime }}
|
|
path: build/sourcegit_*.zip
|
|
- name: Delete temp artifacts
|
|
uses: geekyeggo/delete-artifact@v5
|
|
with:
|
|
name: sourcegit.${{ matrix.runtime }}
|
|
linux:
|
|
name: Package Linux
|
|
runs-on: ubuntu-latest
|
|
container: ubuntu:20.04
|
|
strategy:
|
|
matrix:
|
|
runtime: [linux-x64, linux-arm64]
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
- name: Download package dependencies
|
|
run: |
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
|
|
apt-get update
|
|
apt-get install -y curl wget git dpkg-dev fakeroot tzdata zip unzip desktop-file-utils rpm libfuse2 file build-essential binutils
|
|
- name: Download build
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: sourcegit.${{ matrix.runtime }}
|
|
path: build
|
|
- name: Package
|
|
env:
|
|
VERSION: ${{ inputs.version }}
|
|
RUNTIME: ${{ matrix.runtime }}
|
|
APPIMAGE_EXTRACT_AND_RUN: 1
|
|
run: |
|
|
mkdir build/SourceGit
|
|
tar -xf "build/sourcegit.${{ matrix.runtime }}.tar" -C build/SourceGit
|
|
./build/scripts/package.linux.sh
|
|
- name: Upload package artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: package.${{ matrix.runtime }}
|
|
path: |
|
|
build/sourcegit-*.AppImage
|
|
build/sourcegit_*.deb
|
|
build/sourcegit-*.rpm
|
|
- name: Delete temp artifacts
|
|
uses: geekyeggo/delete-artifact@v5
|
|
with:
|
|
name: sourcegit.${{ matrix.runtime }}
|