This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
comicinfo-editor-v2/.forgejo/workflows/build+release.yml

159 lines
7.4 KiB
YAML
Raw Normal View History

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'";
exit 1
2023-11-17 18:07:33 +00:00
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
2023-11-17 18:22:35 +00:00
steps:
-
name: Storing Debian Codename for Package Upload Job
2023-11-17 18:22:35 +00:00
run: |
. /etc/os-release
echo Debian Codename is: $VERSION_CODENAME
2023-11-17 22:37:18 +00:00
echo "DEBIAN_CODENAME=$VERSION_CODENAME" >> /build.env
2023-11-17 12:00:26 +00:00
-
name: Installing Node, NPM
2023-11-17 13:06:31 +00:00
run: |
apt update
apt install -y \
nodejs npm \
2023-11-17 13:06:31 +00:00
libwebkit2gtk-4.0-dev \
build-essential \
libgtk-3-dev \
libayatana-appindicator3-dev \
-
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
-
name: Install Yarn Packages
run: yarn install
2023-11-17 12:00:26 +00:00
-
name: Compiling To Linux Target
run: |
cargo tauri build
-
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
-
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
-
name: Upload .env as Artifact
uses: actions/upload-artifact@v3
with:
name: build-env
2023-11-17 22:37:18 +00:00
path: /build.env
2023-11-17 21:35:07 +00:00
if-no-files-found: error
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
-
name: Load .env from build job
run: |
mv -v artifacts/build-env/build-env/build.env build.env
2023-11-17 22:10:22 +00:00
export $(xargs <build.env)
2023-11-17 12:00:26 +00:00
-
name: Rearrange Artifact Paths
run: |
mkdir release
2023-11-17 19:16:11 +00:00
find artifacts/ -type f -print0 | xargs -0 mv -v -t release
2023-11-17 12:00:26 +00:00
-
2023-11-17 19:16:11 +00:00
name: Upload Generic Packages
2023-11-17 12:00:26 +00:00
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 \
2023-11-17 19:16:11 +00:00
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 }} \
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage \
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 }} \
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage \
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 19:16:11 +00:00
-
name: Upload Debian Package
run: |
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb \
2023-11-18 00:49:15 +00:00
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/debian/pool/${{ env.DEBIAN_CODENAME }}/main/upload'
2023-11-17 19:16:11 +00:00
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb \
2023-11-18 00:49:15 +00:00
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/debian/pool/${{ env.DEBIAN_CODENAME }}/main/upload
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 }}