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 container: forgejo.neshweb.net/ci-docker-images/rust-tauri:latest steps: - name: Add Clippy run: rustup component add clippy - name: Checking Out Repository Code uses: https://code.forgejo.org/actions/checkout@v3 - name: Change To Rust Root Dir run: cd src-tauri/ - name: Set Up Cargo Cache uses: actions/cache@v3 with: path: | ~/.cargo/bin/ ~/.cargo/registry/index/ ~/.cargo/registry/cache/ ~/.cargo/git/db/ target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Run Clippy run: cargo clippy --manifest-path **/Cargo.toml - name: Check if Version in Cargo.toml matches Tag run: | 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 else echo "Version is: '$VERSION'"; fi build-linux: needs: run-tests if: success() runs-on: docker container: forgejo.neshweb.net/ci-docker-images/rust-tauri:latest steps: - name: Storing Debian Codename for Package Upload Job run: | . /etc/os-release echo Debian Codename is: $VERSION_CODENAME echo "DEBIAN_CODENAME=$VERSION_CODENAME" >> /build.env - name: Checking Out Repository Code uses: https://code.forgejo.org/actions/checkout@v3 - name: Set Up Cargo Cache uses: actions/cache@v3 with: path: | ~/.cargo/bin/ ~/.cargo/registry/index/ ~/.cargo/registry/cache/ ~/.cargo/git/db/ target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/**/Cargo.lock') }} - name: Get Yarn Cache Directory id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Set Up Yarn Cache uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - name: Install Yarn Packages run: yarn install - name: Compiling To Linux Target run: | cargo tauri build - name: Renaming Binary + Bundles run: | echo Moving Build Artifacts to Root mkdir artifacts 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 - name: Uploading Linux Binary Artifact uses: actions/upload-artifact@v3 with: 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 if-no-files-found: error - name: Upload .env as Artifact uses: actions/upload-artifact@v3 with: name: build-env path: /build.env if-no-files-found: error upload-release: needs: [build-linux] if: success() runs-on: docker steps: - name: Downloading All Build Artifacts uses: actions/download-artifact@v3 with: path: artifacts - name: Load .env from build job run: | mv -v artifacts/build-env/build.env build.env export $(xargs