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:
|
|
|
|
run-tests:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2023-11-17 08:02:27 +00:00
|
|
|
-
|
|
|
|
name: Placeholder
|
|
|
|
run: echo Placeholder Job
|
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-11-17 08:17:05 +00:00
|
|
|
run: apt update && apt install -y nodejs
|
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
|
|
|
|
run: cargo build -r
|
|
|
|
-
|
|
|
|
name: Uploading Build Artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: bookworm-bot-linux-amd64
|
2023-11-17 08:59:41 +00:00
|
|
|
path: /workspace/${{ secrets.FORGEJO_USERNAME }}/${{ github.event.repository.name }}/target/release/ascendance-of-a-bookworm-bot
|
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:
|
2023-11-17 09:20:06 +00:00
|
|
|
-
|
|
|
|
name: Installing curl
|
|
|
|
run: apt update && apt install -y curl
|
2023-11-17 07:59:41 +00:00
|
|
|
-
|
|
|
|
name: Downloading All Build Artifacts
|
|
|
|
uses: actions/download-artifact@v3
|
2023-11-17 08:37:11 +00:00
|
|
|
-
|
|
|
|
name: Debug Workflow
|
|
|
|
run: |
|
2023-11-17 08:47:07 +00:00
|
|
|
ls -la ./bookworm-bot-linux-amd64
|
2023-11-17 08:37:11 +00:00
|
|
|
pwd
|
2023-11-17 07:59:41 +00:00
|
|
|
-
|
|
|
|
name: Upload Artifacts As Generic Packages
|
2023-11-17 09:11:09 +00:00
|
|
|
run: |
|
|
|
|
curl --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
|
|
--upload-file /workspace/${{ secrets.FORGEJO_USERNAME }}/${{ github.event.repository.name }}/bookworm-bot-linux-amd64/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 09:11:09 +00:00
|
|
|
echo Uploaded Artifact to Package Registry
|
2023-11-17 09:20:06 +00:00
|
|
|
#-
|
|
|
|
# name: Release New Version
|
|
|
|
# uses: actions/forgejo-release@v1
|
|
|
|
# with:
|
|
|
|
# direction: upload
|
|
|
|
# url: https://forgejo.neshweb.net
|
|
|
|
# release-dir: bookworm-bot-linux-amd64/
|
|
|
|
# token: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
# tag: ${{ github.ref_name }}
|