Packaging for Debian and Ubuntu #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Packaging for Debian and Ubuntu | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- published | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
DEBEMAIL: "[email protected]" | |
DEBFULLNAME: "Brendon Jones" | |
jobs: | |
debian-package: | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.target.distro }}:${{ matrix.target.codename }} | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- { distro: debian, codename: buster } | |
- { distro: debian, codename: bullseye } | |
- { distro: debian, codename: bookworm } | |
- { distro: ubuntu, codename: focal } | |
- { distro: ubuntu, codename: jammy } | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install prereq packages | |
run: | | |
apt-get update | |
apt-get -y upgrade | |
apt-get install -y ca-certificates devscripts dpkg-dev equivs | |
- name: Build packages | |
run: | | |
mk-build-deps -i -r -t 'apt-get -f -y --force-yes' | |
dpkg-buildpackage -b -us -uc -rfakeroot | |
- name: Store packages for publishing | |
run: | | |
export DIRNAME=${{ matrix.target.distro }}_${{ matrix.target.codename }} | |
mkdir -p packages/${DIRNAME} | |
cp ../*.deb packages/${DIRNAME}/ | |
- name: Store artifacts for checking | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.target.distro }} ${{ matrix.target.codename }} packages | |
path: packages/ | |
retention-days: 7 | |
- name: Publish packages to cloudsmith | |
if: ${{ github.event_name == 'release' }} | |
uses: wanduow/action-cloudsmith-upload-packages@v1 | |
with: | |
path: packages/ | |
repo: ${{ secrets.CLOUDSMITH_OWNER }}/amp | |
username: ${{ secrets.CLOUDSMITH_USERNAME }} | |
api_key: ${{ secrets.CLOUDSMITH_API_KEY }} |