update workflow
All checks were successful
Build .deb on release / Build-Deb (push) Successful in 1m57s

This commit is contained in:
Alex Janka 2024-03-03 09:53:29 +11:00
parent 016d238eb5
commit 1ca2c2b991

View file

@ -1,22 +1,30 @@
name: Build .deb on release
run-name: Building .deb of latest release and adding to apt repo
on:
on:
push:
tags:
- '*'
- "*"
jobs:
Build-Deb:
runs-on: asalex
runs-on: aarch64
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
submodules: 'recursive'
submodules: "recursive"
- name: Build
run: "cargo build --release --target=aarch64-unknown-linux-gnu"
- name: Build .deb
run: "cargo deb --target=aarch64-unknown-linux-gnu"
- name: Add .deb to apt repository
run: "aptly repo add tesla $(ls -t ./target/aarch64-unknown-linux-gnu/debian/*.deb | head -1)"
- run: "aptly publish update testing"
- run: "aptly publish update testing filesystem:deb:"
run: "curl --user alex ${{ secrets.PACKAGING_TOKEN }} --upload-file $(ls -t ./target/aarch64-unknown-linux-gnu/debian/*.deb | head -1) https://git.alexjanka.com/api/packages/alex/debian/pool/testing/main/upload"
- name: "Release package"
id: use-go-action
uses: https://gitea.com/actions/release-action@main
with:
files: |-
./target/aarch64-unknown-linux-gnu/debian/*.deb
./target/aarch64-unknown-linux-gnu/release/tesla-charge-controller
api_key: "${{secrets.PACKAGING_TOKEN}}"