2023-11-17 08:14:25 +00:00
|
|
|
name: 'Build and Release Binary File'
|
|
|
|
author: 'Neshura'
|
|
|
|
|
2023-11-17 08:13:45 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
|
2023-11-17 07:59:41 +00:00
|
|
|
jobs:
|
2023-12-18 08:06:58 +00:00
|
|
|
test:
|
2023-11-17 07:59:41 +00:00
|
|
|
runs-on: docker
|
2023-12-19 21:12:28 +00:00
|
|
|
container: rust:latest
|
2023-11-17 07:59:41 +00:00
|
|
|
steps:
|
2023-12-19 21:19:21 +00:00
|
|
|
-
|
|
|
|
name: Installing Node
|
2023-12-19 21:43:16 +00:00
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 18
|
2023-12-19 21:21:52 +00:00
|
|
|
-
|
|
|
|
name: Add Clippy
|
|
|
|
run: rustup component add clippy
|
2023-12-19 21:19:21 +00:00
|
|
|
-
|
|
|
|
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
|
2023-11-17 07:58:18 +00:00
|
|
|
|
2023-11-17 07:59:41 +00:00
|
|
|
build:
|
2023-11-17 08:13:45 +00:00
|
|
|
needs: test
|
|
|
|
if: success()
|
2023-11-17 07:59:41 +00:00
|
|
|
runs-on: docker
|
|
|
|
container: rust:latest
|
|
|
|
steps:
|
2023-11-17 08:09:27 +00:00
|
|
|
-
|
|
|
|
name: Installing Node
|
2023-12-19 21:43:16 +00:00
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 18
|
2023-11-17 07:59:41 +00:00
|
|
|
-
|
|
|
|
name: Checking Out Repository Code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
|
|
|
-
|
|
|
|
name: Compiling To Linux Target
|
2023-11-17 10:19:46 +00:00
|
|
|
run: |
|
|
|
|
cargo build -r
|
2023-11-17 10:58:41 +00:00
|
|
|
mv target/release/ascendance-of-a-bookworm-bot bookworm-bot-linux-amd64
|
2023-11-17 07:59:41 +00:00
|
|
|
-
|
|
|
|
name: Uploading Build Artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: bookworm-bot-linux-amd64
|
2023-11-17 10:58:41 +00:00
|
|
|
path: bookworm-bot-linux-amd64
|
2023-11-17 07:59:41 +00:00
|
|
|
if-no-files-found: error
|
2023-11-17 07:58:18 +00:00
|
|
|
|
2023-11-17 07:59:41 +00:00
|
|
|
upload-release:
|
|
|
|
needs: build
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Downloading All Build Artifacts
|
|
|
|
uses: actions/download-artifact@v3
|
2023-11-17 11:01:43 +00:00
|
|
|
-
|
|
|
|
name: Rearrange Artifact Paths
|
2023-11-17 10:58:41 +00:00
|
|
|
run: |
|
|
|
|
mkdir release
|
2023-11-27 08:09:17 +00:00
|
|
|
mv bookworm-bot-linux-amd64/bookworm-bot-linux-amd64 release/bookworm-bot-linux-amd64
|
2023-11-17 07:59:41 +00:00
|
|
|
-
|
|
|
|
name: Upload Artifacts As Generic Packages
|
2023-11-17 09:11:09 +00:00
|
|
|
run: |
|
2023-11-17 09:56:31 +00:00
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2023-11-17 10:58:41 +00:00
|
|
|
--upload-file release/bookworm-bot-linux-amd64 \
|
2023-11-17 09:56:31 +00:00
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/bookworm-bot-linux-amd64'
|
2023-11-17 09:24:50 +00:00
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2023-11-17 10:58:41 +00:00
|
|
|
--upload-file release/bookworm-bot-linux-amd64 \
|
2023-11-17 08:59:41 +00:00
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/bookworm-bot-linux-amd64
|
2023-11-17 10:03:06 +00:00
|
|
|
-
|
|
|
|
name: Release New Version
|
|
|
|
uses: actions/forgejo-release@v1
|
|
|
|
with:
|
|
|
|
direction: upload
|
|
|
|
url: https://forgejo.neshweb.net
|
2023-11-17 10:58:41 +00:00
|
|
|
release-dir: release
|
2023-11-17 10:03:06 +00:00
|
|
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
tag: ${{ github.ref_name }}
|