Skip to content

Commit

Permalink
Merge pull request #1838 from AidanDelaney/support-ubuntu-lunar
Browse files Browse the repository at this point in the history
Release to Ubuntu Lunar PPA
  • Loading branch information
jkutner authored Jul 18, 2023
2 parents cc6b001 + a7945be commit 3364a6b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/delivery-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [bionic, focal, jammy]
target: [bionic, focal, jammy, lunar]
runs-on: ubuntu-20.04
steps:
- name: Checkout code
Expand Down Expand Up @@ -102,3 +102,15 @@ jobs:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}
PACKAGE_VERSION: ${{ steps.version.outputs.result }}

- name: Deliver lunar
if: matrix.target == 'lunar'
uses: docker://ubuntu:lunar
with:
entrypoint: .github/workflows/delivery/ubuntu/deliver.sh
env:
DEBIAN_FRONTEND: "noninteractive"
GO_DEP_PACKAGE_NAME: golang
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}
PACKAGE_VERSION: ${{ steps.version.outputs.result }}

0 comments on commit 3364a6b

Please sign in to comment.