Skip to content

Commit

Permalink
Fix more workflow failures when trying to upload .ddeb
Browse files Browse the repository at this point in the history
  • Loading branch information
salcock committed Jul 22, 2024
1 parent edf2ca8 commit f2365f6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deb-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: packages-${{ env.DIRNAME }}
path: packages/${{ env.DIRNAME }}/*.deb
path: packages/${{ env.DIRNAME }}/*deb
retention-days: 1

test:
Expand Down Expand Up @@ -117,8 +117,7 @@ jobs:
- name: Copy packages
run: |
mkdir -p packages/${DIRNAME}
find . -name "*.deb" | xargs cp -t packages/${DIRNAME}/
find . -name "*.ddeb" | xargs cp -t packages/${DIRNAME}/
find . -name "*deb" | xargs cp -t packages/${DIRNAME}/
- name: Publish package to cloudsmith
uses: salcock/[email protected]
with:
Expand Down

0 comments on commit f2365f6

Please sign in to comment.