tesla-charge-controller/.gitea/workflows/deb.yaml
Alex Janka bad9f9ec93
Some checks failed
Build .deb on release / Build-Deb (push) Has been cancelled
submodule update
2024-01-20 20:39:09 +11:00

23 lines
635 B
YAML

name: Build .deb on release
run-name: Building .deb of latest release and adding to apt repo
on:
push:
tags:
- '*'
jobs:
Build-Deb:
runs-on: asalex
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
submodules: 'recursive'
- 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:"