From 342aaa10de01db615f34fd942c53a8a68c6e9ab7 Mon Sep 17 00:00:00 2001 From: Alex Janka Date: Sat, 20 Jan 2024 20:35:35 +1100 Subject: [PATCH] fix --- .gitea/workflows/deb.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deb.yaml b/.gitea/workflows/deb.yaml index be47c97..5fa6403 100644 --- a/.gitea/workflows/deb.yaml +++ b/.gitea/workflows/deb.yaml @@ -13,8 +13,8 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - name: Build .deb - run: cargo deb --target=aarch64-unknown-linux-gnu + 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: "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:"