Skip to content

Commit

Permalink
Glob syntax change for Packages and Release.
Browse files Browse the repository at this point in the history
  • Loading branch information
icemarkom committed Nov 25, 2021
1 parent 1a48f95 commit 04a7c97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
- name: Run dpkg-scanpackages and apt-ftparchive
run: |
ln -s dist debian && \
dpkg-scanpackages --multiversion debian > Packages && \
apt-ftparchive release debian > Release
dpkg-scanpackages --multiversion debian | gzip > Packages.gz && \
apt-ftparchive release debian | gzip > Release.gz
- name: Upload Packages and Release manually
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.TOKEN }}
file: "{Packages|Release}"
file: "*.gz"
tag: ${{ github.ref }}
overwrite: true

0 comments on commit 04a7c97

Please sign in to comment.