From fac4605e9b15bdb2971d4e04a01996fcc6f5b7b1 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 14 Apr 2023 12:21:19 +0100 Subject: [PATCH] Fix reprepro path --- .github/workflows/reprepro.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reprepro.yaml b/.github/workflows/reprepro.yaml index a5dfbb9..59eb2ab 100644 --- a/.github/workflows/reprepro.yaml +++ b/.github/workflows/reprepro.yaml @@ -32,9 +32,10 @@ jobs: - name: Upload incoming deb id: upload run: | - deb="$(ls dist/*.deb | tail -n1)" + deb="$(ls *.deb | tail -n1)" echo "incoming=$deb" >> $GITHUB_OUTPUT aws s3 cp "$deb" "s3://$R2_INCOMING_BUCKET" --endpoint-url "$R2_URL" --region auto + working-directory: dist env: AWS_ACCESS_KEY_ID: ${{ secrets.CF_R2_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.CF_R2_TOKEN }}