2023-11-17 11:35:36 +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:
|
2023-12-18 08:07:23 +00:00
|
|
|
test:
|
2023-11-17 11:35:36 +00:00
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2023-12-13 18:05:58 +00:00
|
|
|
-
|
|
|
|
name: Checking Out Repository Code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
2023-11-17 11:35:36 +00:00
|
|
|
-
|
|
|
|
name: Placeholder
|
|
|
|
run: echo Placeholder Job
|
2023-12-13 18:05:58 +00:00
|
|
|
-
|
|
|
|
name: Check if Version in Cargo.toml matches Tag
|
|
|
|
run: |
|
2023-12-18 07:50:58 +00:00
|
|
|
VERSION=$(cat Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
2023-12-13 18:05:58 +00:00
|
|
|
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 11:35:36 +00:00
|
|
|
|
|
|
|
build:
|
2023-12-18 08:07:23 +00:00
|
|
|
needs: test
|
2023-11-17 11:35:36 +00:00
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
container: rust:latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Installing Node
|
|
|
|
run: apt update && apt install -y nodejs
|
|
|
|
-
|
|
|
|
name: Checking Out Repository Code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
2023-11-17 11:43:06 +00:00
|
|
|
-
|
|
|
|
name: Preparing Environment
|
|
|
|
run: |
|
2023-11-17 11:52:03 +00:00
|
|
|
echo DATABASE_URL=${{ secrets.DATABASE_URL }} >> .env
|
2023-11-27 07:48:45 +00:00
|
|
|
echo MACHINE_GROUP_ID=${{ vars.MACHINE_GROUP_ID }} >> .env
|
2023-11-17 11:43:06 +00:00
|
|
|
echo UPTIME_KUMA_URL= >> .env
|
2023-11-17 11:35:36 +00:00
|
|
|
-
|
|
|
|
name: Compiling To Linux Target
|
|
|
|
run: |
|
|
|
|
cargo build -r
|
|
|
|
mv target/release/chellaris-rust-api chellaris-rust-api-linux-amd64
|
|
|
|
-
|
|
|
|
name: Uploading Build Artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: chellaris-rust-api-linux-amd64
|
|
|
|
path: chellaris-rust-api-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
|
2023-11-27 08:07:13 +00:00
|
|
|
mv chellaris-rust-api-linux-amd64/chellaris-rust-api-linux-amd64 release/chellaris-rust-api-linux-amd64
|
2023-11-17 11:35:36 +00:00
|
|
|
-
|
|
|
|
name: Upload Artifacts As Generic Packages
|
|
|
|
run: |
|
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
|
|
--upload-file release/chellaris-rust-api-linux-amd64 \
|
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/chellaris-rust-api-linux-amd64'
|
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
|
|
--upload-file release/chellaris-rust-api-linux-amd64 \
|
|
|
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/chellaris-rust-api-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 }}
|