Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
workflows: create APT repo
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidd6 committed Jan 2, 2021
1 parent 01952f8 commit 724cb78
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,17 @@ jobs:
file: '*.deb'
file_glob: true
overwrite: true
- name: Scan packages
run: |
sudo apt update
sudo apt install -yq dpkg-dev
dpkg-scanpackages . > Packages
- name: Create repo
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{github.token}}
tag: repo
file: '*(*.deb|Packages)'
release_name: APT repository
file_glob: true
overwrite: true

0 comments on commit 724cb78

Please sign in to comment.