cloudflare-dns-updater/.forgejo/workflows/build+release.yml

117 lines
5.2 KiB
YAML
Raw Normal View History

2023-12-12 07:03:16 +00:00
name: 'Build and Release Binary File'
author: 'Neshura'
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
2023-12-26 03:28:00 +00:00
- '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
2023-12-12 07:03:16 +00:00
jobs:
test:
2023-12-12 07:03:16 +00:00
runs-on: docker
2023-12-25 14:10:42 +00:00
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
2023-12-12 07:03:16 +00:00
steps:
2023-12-25 14:10:42 +00:00
-
name: Add Clippy
run: rustup component add clippy
2023-12-18 07:51:22 +00:00
-
name: Checking Out Repository Code
uses: https://code.forgejo.org/actions/checkout@v3
2023-12-12 07:03:16 +00:00
-
2023-12-25 14:10:42 +00:00
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
2023-12-18 07:51:22 +00:00
-
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-12-12 07:03:16 +00:00
build:
needs: test
if: success()
runs-on: docker
2023-12-25 14:10:42 +00:00
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
steps:
2023-12-12 07:03:16 +00:00
-
name: Checking Out Repository Code
uses: https://code.forgejo.org/actions/checkout@v3
-
name: Installing cargo-deb dependencies
run: apt install -y liblzma-dev
-
name: Installing cargo-deb
run: |
cargo install cargo-deb
2023-12-12 07:03:16 +00:00
-
name: Compiling To Linux Target
run: |
cargo build -r
2023-12-28 22:03:43 +00:00
mv target/release/${{ github.event.repository.name }} ${{ github.event.repository.name }}-linux-amd64
-
name: Bundle .deb package
run: |
cargo deb
2023-12-28 22:03:43 +00:00
DEBIAN_REF=$(echo ${{ github.ref_name }} | tr - ~)
mv target/debian/${{ github.event.repository.name }}_$DEBIAN_REF-1_amd64.deb ${{ github.event.repository.name }}_$DEBIAN_REF-1_amd64.deb
2023-12-12 07:03:16 +00:00
-
name: Uploading Build Artifact
uses: actions/upload-artifact@v3
with:
name: release_blobs
path: |
2023-12-28 22:03:43 +00:00
${{ github.event.repository.name }}-linux-amd64
${{ github.event.repository.name }}_$DEBIAN_REF-1_amd64.deb
2023-12-12 07:03:16 +00:00
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: Upload Binary
2023-12-12 07:03:16 +00:00
run: |
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
2023-12-28 22:03:43 +00:00
--upload-file release_blobs/${{ github.event.repository.name }}-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 }} \
2023-12-28 22:03:43 +00:00
--upload-file release_blobs/${{ github.event.repository.name }}-linux-amd64 \
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/chellaris-rust-api-linux-amd64
2023-12-12 07:03:16 +00:00
-
name: Upload Debian Package
2023-12-12 07:03:16 +00:00
run: |
2023-12-28 22:03:43 +00:00
DEBIAN_REF=$(echo ${{ github.ref_name }} | tr - ~)
2023-12-12 07:03:16 +00:00
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
2023-12-28 22:03:43 +00:00
--upload-file release_blobs/${{ github.event.repository.name }}_$DEBIAN_REF-1_amd64.deb \
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/debian/pool/bookworm/main/upload'
2023-12-12 07:03:16 +00:00
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
2023-12-28 22:03:43 +00:00
--upload-file release_blobs/${{ github.event.repository.name }}_$DEBIAN_REF-1_amd64.deb \
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/debian/pool/bookworm/main/upload
2023-12-12 07:03:16 +00:00
-
name: Release New Version
uses: actions/forgejo-release@v1
with:
direction: upload
url: https://forgejo.neshweb.net
release-dir: release_blobs
2023-12-12 07:03:16 +00:00
token: ${{ secrets.FORGEJO_TOKEN }}
2023-12-28 22:03:43 +00:00
tag: ${{ github.ref_name }}