Initialize Git Repository: 'Stalwart'
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
name: Stalwart
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- release
|
||||
jobs:
|
||||
workflow:
|
||||
name: Stalwart
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- architecture: amd64
|
||||
binary: x86_64
|
||||
cicd: cicd.any
|
||||
codename: bookworm trixie noble
|
||||
component: main
|
||||
- architecture: arm64
|
||||
binary: aarch64
|
||||
cicd: cicd.any
|
||||
codename: bookworm trixie noble
|
||||
component: main
|
||||
runs-on: ${{ matrix.cicd }}
|
||||
steps:
|
||||
- name: Repository [Clone]
|
||||
uses: actions/checkout@v6
|
||||
- name: Environment
|
||||
id: environment
|
||||
run: |
|
||||
source './.env'
|
||||
/usr/bin/echo "VERSION=${VERSION_DAEMON}" >> "${GITHUB_OUTPUT}"
|
||||
/usr/bin/echo "Set Variable 'VERSION' to '${VERSION_DAEMON}'"
|
||||
|
||||
/usr/bin/echo "VERSIONCLI=${VERSION_CLI}" >> "${GITHUB_OUTPUT}"
|
||||
/usr/bin/echo "Set Variable 'VERSION_CLI' to '${VERSION_CLI}'"
|
||||
|
||||
/usr/bin/echo "VERSIONDAEMON=${VERSION_DAEMON}" >> "${GITHUB_OUTPUT}"
|
||||
/usr/bin/echo "Set Variable 'VERSION_DAEMON' to '${VERSION_DAEMON}'"
|
||||
|
||||
- name: Stalwart [Download]
|
||||
env:
|
||||
BINARY: ${{ matrix.binary }}
|
||||
VERSION_CLI: ${{ steps.environment.outputs.versioncli }}
|
||||
VERSION_DAEMON: ${{ steps.environment.outputs.versiondaemon }}
|
||||
run: |
|
||||
/usr/bin/wget --verbose --output-document='./stalwart.tar.gz' "https://github.com/stalwartlabs/stalwart/releases/download/v${VERSION_DAEMON}/stalwart-${BINARY}-unknown-linux-gnu.tar.gz"
|
||||
/usr/bin/wget --verbose --output-document='./stalwart-cli.tar.xz' "https://github.com/stalwartlabs/cli/releases/download/v${VERSION_CLI}/stalwart-cli-${BINARY}-unknown-linux-gnu.tar.xz"
|
||||
- name: Stalwart [Extract]
|
||||
run: |
|
||||
/usr/bin/install --directory --verbose './binaries'
|
||||
/usr/bin/tar --extract --gzip --verbose --file='./stalwart.tar.gz' --directory='./binaries'
|
||||
/usr/bin/tar --extract --xz --verbose --file='./stalwart-cli.tar.xz' --directory='./binaries'
|
||||
- name: Debian Package [Prepare]
|
||||
env:
|
||||
ARCHITECTURE: ${{ matrix.architecture }}
|
||||
BINARY: ${{ matrix.binary }}
|
||||
VERSION: ${{ steps.environment.outputs.version }}
|
||||
run: |
|
||||
/usr/bin/sed --in-place --expression="s/Architecture:.*/Architecture: ${ARCHITECTURE}/" './stalwart/DEBIAN/control'
|
||||
/usr/bin/sed --in-place --expression="s/Version:.*/Version: ${VERSION}/" './stalwart/DEBIAN/control'
|
||||
/usr/bin/chmod --verbose '0755' './stalwart/DEBIAN/postinst'
|
||||
/usr/bin/chmod --verbose '0755' './stalwart/DEBIAN/postrm'
|
||||
/usr/bin/chmod --verbose '0755' './stalwart/DEBIAN/preinst'
|
||||
/usr/bin/chmod --verbose '0755' './stalwart/DEBIAN/prerm'
|
||||
/usr/bin/chmod --verbose '0755' './stalwart/etc/init.d/stalwart'
|
||||
/usr/bin/chmod --verbose '0640' './stalwart/etc/stalwart.toml'
|
||||
/usr/bin/install --directory --verbose './stalwart/usr/bin'
|
||||
/usr/bin/mv --verbose "./binaries/stalwart-cli-${BINARY}-unknown-linux-gnu/stalwart-cli" './stalwart/usr/bin/stalwart-cli'
|
||||
/usr/bin/chmod --verbose '0755' './stalwart/usr/bin/stalwart-cli'
|
||||
/usr/bin/install --directory --verbose './stalwart/usr/sbin'
|
||||
/usr/bin/mv --verbose './binaries/stalwart' './stalwart/usr/sbin/stalwart'
|
||||
/usr/bin/chmod --verbose '0755' './stalwart/usr/sbin/stalwart'
|
||||
- name: Debian Package [Build]
|
||||
env:
|
||||
ARCHITECTURE: ${{ matrix.architecture }}
|
||||
VERSION: ${{ steps.environment.outputs.version }}
|
||||
run: |
|
||||
/usr/bin/dpkg-gen './stalwart'
|
||||
/usr/bin/mv --verbose './stalwart.deb' "./stalwart_${VERSION}_${ARCHITECTURE}.deb"
|
||||
- name: Debian Repository [Prepare]
|
||||
env:
|
||||
ARCHITECTURE: ${{ matrix.architecture }}
|
||||
CODENAME: ${{ matrix.codename }}
|
||||
COMPONENT: ${{ matrix.component }}
|
||||
REPOSITORY_SSH_PRIVATE_KEY: ${{ secrets.REPOSITORY_SSH_PRIVATE_KEY }}
|
||||
VERSION: ${{ steps.environment.outputs.version }}
|
||||
run: |
|
||||
/usr/bin/echo "${REPOSITORY_SSH_PRIVATE_KEY}" > './id_ed25519'
|
||||
/usr/bin/chmod --quiet '0400' './id_ed25519'
|
||||
/usr/bin/echo "REPOSITORY_CODENAME='${CODENAME}'" > "./stalwart_${VERSION}_${ARCHITECTURE}.cfg"
|
||||
/usr/bin/echo "Set Configuration 'REPOSITORY_CODENAME' to '${CODENAME}'"
|
||||
/usr/bin/echo "REPOSITORY_COMPONENT='${COMPONENT}'" >> "./stalwart_${VERSION}_${ARCHITECTURE}.cfg"
|
||||
/usr/bin/echo "Set Configuration 'REPOSITORY_COMPONENT' to '${COMPONENT}'"
|
||||
- name: Publish Package [Release]
|
||||
uses: https://gitea.com/actions/gitea-release-action@v1
|
||||
with:
|
||||
name: Stalwart v${{ steps.environment.outputs.version }}
|
||||
tag_name: v${{ steps.environment.outputs.version }}
|
||||
files: |
|
||||
stalwart_${{ steps.environment.outputs.version }}_${{ matrix.architecture }}.deb
|
||||
- name: Debian Package [Debian Repository Publish]
|
||||
env:
|
||||
ARCHITECTURE: ${{ matrix.architecture }}
|
||||
REPOSITORY_SSH_HOSTNAME: ${{ secrets.REPOSITORY_SSH_HOSTNAME }}
|
||||
REPOSITORY_SSH_USER: ${{ secrets.REPOSITORY_SSH_USER }}
|
||||
REPOSITORY_DESTINATION: ${{ secrets.REPOSITORY_DESTINATION }}
|
||||
VERSION: ${{ steps.environment.outputs.version }}
|
||||
run: |
|
||||
/usr/bin/scp -4 -B -C -i './id_ed25519' -o 'LogLevel QUIET' -o 'StrictHostKeyChecking no' -o "UserKnownHostsFile '/dev/null'" "./stalwart_${VERSION}_${ARCHITECTURE}.deb" "${REPOSITORY_SSH_USER}"@"${REPOSITORY_SSH_HOSTNAME}":"${REPOSITORY_DESTINATION}/stalwart_${VERSION}_${ARCHITECTURE}.deb"
|
||||
/usr/bin/scp -4 -B -C -i './id_ed25519' -o 'LogLevel QUIET' -o 'StrictHostKeyChecking no' -o "UserKnownHostsFile '/dev/null'" "./stalwart_${VERSION}_${ARCHITECTURE}.cfg" "${REPOSITORY_SSH_USER}"@"${REPOSITORY_SSH_HOSTNAME}":"${REPOSITORY_DESTINATION}/stalwart_${VERSION}_${ARCHITECTURE}.cfg"
|
||||
Reference in New Issue
Block a user