119 lines
4.5 KiB
YAML
119 lines
4.5 KiB
YAML
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:
|
|
test:
|
|
runs-on: docker
|
|
container: rust:latest
|
|
steps:
|
|
-
|
|
name: Installing Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
-
|
|
name: Add Clippy
|
|
run: rustup component add clippy
|
|
-
|
|
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: Checking Out Repository Code
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
|
-
|
|
name: Run Clippy
|
|
run: cargo clippy
|
|
-
|
|
name: Check if Version in Cargo.toml matches Tag
|
|
run: |
|
|
VERSION=$(cat 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:
|
|
needs: test
|
|
if: success()
|
|
runs-on: docker
|
|
container: rust:latest
|
|
steps:
|
|
-
|
|
name: Installing Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
-
|
|
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: Checking Out Repository Code
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
|
-
|
|
name: Compiling To Linux Target
|
|
run: |
|
|
cargo build -r
|
|
mv target/release/ascendance-of-a-bookworm-bot bookworm-bot-linux-amd64
|
|
-
|
|
name: Uploading Build Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bookworm-bot-linux-amd64
|
|
path: bookworm-bot-linux-amd64
|
|
if-no-files-found: error
|
|
|
|
upload-release:
|
|
needs: build
|
|
if: success()
|
|
runs-on: docker
|
|
steps:
|
|
-
|
|
name: Downloading All Build Artifacts
|
|
uses: actions/download-artifact@v3
|
|
-
|
|
name: Rearrange Artifact Paths
|
|
run: |
|
|
mkdir release
|
|
mv bookworm-bot-linux-amd64/bookworm-bot-linux-amd64 release/bookworm-bot-linux-amd64
|
|
-
|
|
name: Upload Artifacts As Generic Packages
|
|
run: |
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
--upload-file release/bookworm-bot-linux-amd64 \
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/bookworm-bot-linux-amd64'
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
--upload-file release/bookworm-bot-linux-amd64 \
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/bookworm-bot-linux-amd64
|
|
-
|
|
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 }}
|