2023-11-17 12:00:26 +00:00
|
|
|
name: 'Build and Release Binary File'
|
|
|
|
author: 'Neshura'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
|
|
|
|
jobs:
|
|
|
|
run-tests:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2023-11-17 17:15:00 +00:00
|
|
|
-
|
|
|
|
name: Checking Out Repository Code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
|
|
|
name: Placeholder
|
|
|
|
run: echo Placeholder Job
|
2023-11-17 14:26:24 +00:00
|
|
|
-
|
|
|
|
name: Check if Version in Cargo.toml matches Tag
|
|
|
|
run: |
|
2023-11-17 18:07:33 +00:00
|
|
|
VERSION=$(cat src-tauri/Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
|
|
|
if test $VERSION != "${{ github.ref_name }}"; then
|
|
|
|
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
|
|
|
|
else
|
|
|
|
echo "Version is: '$VERSION'";
|
|
|
|
fi
|
2023-11-17 12:00:26 +00:00
|
|
|
|
2023-11-17 17:13:35 +00:00
|
|
|
build-linux:
|
2023-11-17 12:00:26 +00:00
|
|
|
needs: test
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
container: rust:latest
|
|
|
|
steps:
|
|
|
|
-
|
2023-11-17 12:21:08 +00:00
|
|
|
name: Installing Node, NPM
|
2023-11-17 13:06:31 +00:00
|
|
|
run: |
|
|
|
|
apt update
|
|
|
|
apt install -y \
|
2023-11-17 13:13:44 +00:00
|
|
|
nodejs npm \
|
2023-11-17 13:06:31 +00:00
|
|
|
libwebkit2gtk-4.0-dev \
|
|
|
|
build-essential \
|
|
|
|
libgtk-3-dev \
|
|
|
|
libayatana-appindicator3-dev \
|
2023-11-17 12:21:08 +00:00
|
|
|
-
|
|
|
|
name: Installing Yarn, Vite
|
|
|
|
run: npm install --global yarn vite
|
|
|
|
-
|
|
|
|
name: Installing Tauri CLI
|
|
|
|
run: cargo install tauri-cli
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
|
|
|
name: Checking Out Repository Code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
2023-11-17 12:33:06 +00:00
|
|
|
-
|
|
|
|
name: Install Yarn Packages
|
|
|
|
run: yarn install
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
|
|
|
name: Compiling To Linux Target
|
|
|
|
run: |
|
|
|
|
cargo tauri build
|
2023-11-17 13:50:43 +00:00
|
|
|
-
|
|
|
|
name: Renaming Binary + Bundles
|
|
|
|
run: |
|
|
|
|
echo Moving Build Artifacts to Root
|
|
|
|
mkdir artifacts
|
2023-11-17 14:26:24 +00:00
|
|
|
mv -v src-tauri/target/release/comicinfo-editor-v2 artifacts/comicinfo-editor-v2-linux-amd64
|
|
|
|
mv -v src-tauri/target/release/bundle/deb/*.deb artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
|
|
|
mv -v src-tauri/target/release/bundle/appimage/*.AppImage artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
2023-11-17 17:13:35 +00:00
|
|
|
name: Uploading Linux Binary Artifact
|
2023-11-17 12:00:26 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-11-17 17:13:35 +00:00
|
|
|
name: linux-amd64-binary
|
|
|
|
path: artifacts/comicinfo-editor-v2-linux-amd64
|
|
|
|
if-no-files-found: error
|
|
|
|
-
|
|
|
|
name: Uploading Linux Debian Artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: linux-amd64-debian
|
|
|
|
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
|
|
|
if-no-files-found: error
|
2023-11-17 17:44:20 +00:00
|
|
|
-
|
|
|
|
name: Storing Debian Version for Upload Job
|
|
|
|
id: store_deb_ver
|
2023-11-17 18:07:33 +00:00
|
|
|
run: |
|
|
|
|
env -i bash -c '. /etc/os-release; echo $VERSION_CODENAME'
|
|
|
|
echo Debian Version is: $VERSION_CODENAME
|
|
|
|
echo $VERSION_CODENAME >> $GITHUB_OUTPUT
|
2023-11-17 17:13:35 +00:00
|
|
|
-
|
|
|
|
name: Uploading Linux AppImage Artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: linux-amd64-appimage
|
|
|
|
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
|
2023-11-17 12:00:26 +00:00
|
|
|
if-no-files-found: error
|
2023-11-17 17:44:20 +00:00
|
|
|
outputs:
|
|
|
|
debian_version: ${{ steps.store_deb_ver.outputs.VERSION_CODENAME }}
|
2023-11-17 12:00:26 +00:00
|
|
|
|
|
|
|
upload-release:
|
2023-11-17 17:13:35 +00:00
|
|
|
needs: [build-linux]
|
2023-11-17 12:00:26 +00:00
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Downloading All Build Artifacts
|
|
|
|
uses: actions/download-artifact@v3
|
2023-11-17 17:29:21 +00:00
|
|
|
with:
|
|
|
|
path: artifacts
|
2023-11-17 17:13:35 +00:00
|
|
|
-
|
|
|
|
name: Debug Upload
|
|
|
|
run: |
|
2023-11-17 17:29:21 +00:00
|
|
|
ls -lap artifacts
|
|
|
|
ls -lap artifacts/linux-amd64-appimage
|
|
|
|
ls -lap artifacts/linux-amd64-appimage/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
|
|
|
name: Rearrange Artifact Paths
|
|
|
|
run: |
|
|
|
|
mkdir release
|
2023-11-17 17:29:21 +00:00
|
|
|
find artifacts/ -type f -print0 | xargs -0 mv -t release
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
|
|
|
name: Upload Artifacts As Generic Packages
|
|
|
|
run: |
|
2023-11-17 13:06:31 +00:00
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
|
|
--upload-file release/comicinfo-editor-v2-linux-amd64 \
|
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/comicinfo-editor-v2-linux-amd64'
|
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
|
|
--upload-file release/comicinfo-editor-v2-linux-amd64 \
|
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/comicinfo-editor-v2-linux-amd64
|
|
|
|
|
2023-11-17 12:00:26 +00:00
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2023-11-17 13:50:43 +00:00
|
|
|
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb \
|
2023-11-17 17:44:20 +00:00
|
|
|
https://forgejo.example.com/api/packages/${{ secrets.FORGEJO_USERNAME }}/debian/pool/${{ needs.store_deb_ver.outputs.debian_version }}/main/upload'
|
2023-11-17 12:00:26 +00:00
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2023-11-17 13:50:43 +00:00
|
|
|
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb \
|
2023-11-17 17:44:20 +00:00
|
|
|
https://forgejo.example.com/api/packages/${{ secrets.FORGEJO_USERNAME }}/debian/pool/${{ needs.store_deb_ver.outputs.debian_version }}/main/upload
|
2023-11-17 12:00:26 +00:00
|
|
|
|
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2023-11-17 17:44:02 +00:00
|
|
|
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage \
|
2023-11-17 13:50:43 +00:00
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage'
|
2023-11-17 12:00:26 +00:00
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2023-11-17 17:44:02 +00:00
|
|
|
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage \
|
2023-11-17 13:50:43 +00:00
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
|
|
|
name: Release New Version
|
|
|
|
uses: actions/forgejo-release@v1
|
|
|
|
with:
|
|
|
|
direction: upload
|
|
|
|
url: https://forgejo.neshweb.net
|
|
|
|
release-dir: release
|
|
|
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
tag: ${{ github.ref_name }}
|