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 14:31:42 +00:00
|
|
|
VERSION=$(cat src-tauri/Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d=)
|
|
|
|
if test $VERSION != "${{ github.ref_name }}"
|
2023-11-17 14:26:24 +00:00
|
|
|
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'"
|
|
|
|
end
|
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
|
|
|
|
-
|
|
|
|
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
|
|
|
|
|
|
|
|
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:13:35 +00:00
|
|
|
-
|
|
|
|
name: Debug Upload
|
|
|
|
run: |
|
|
|
|
ls -lap ./
|
2023-11-17 12:00:26 +00:00
|
|
|
-
|
|
|
|
name: Rearrange Artifact Paths
|
|
|
|
run: |
|
|
|
|
mkdir release
|
2023-11-17 14:26:24 +00:00
|
|
|
mv -v comicinfo-editor-v2-linux-amd64/comicinfo-editor-v2-linux-amd64/* 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 \
|
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb'
|
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 \
|
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
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 \
|
|
|
|
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 13:50:43 +00:00
|
|
|
--upload-file release/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb \
|
|
|
|
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 }}
|