2023-12-04 03:14:54 +00:00
|
|
|
name: Ubuntu Launchpad Build
|
|
|
|
on:
|
|
|
|
push:
|
2024-01-20 12:07:33 +00:00
|
|
|
paths-ignore:
|
|
|
|
- scripts/docker/**
|
2023-12-04 03:14:54 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2024-01-28 00:28:15 +00:00
|
|
|
- current
|
2023-12-04 03:14:54 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
push-to-ppa:
|
|
|
|
|
|
|
|
name: Submit build to Ubuntu Launchpad
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out sources
|
2024-05-11 05:33:54 +00:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: recursive
|
2023-12-04 03:14:54 +00:00
|
|
|
|
2024-05-11 05:33:54 +00:00
|
|
|
- name: set the version information
|
2024-01-05 04:44:31 +00:00
|
|
|
id: version_number
|
2024-05-11 05:33:54 +00:00
|
|
|
uses: ./.github/actions/manage-version
|
|
|
|
with:
|
|
|
|
nightly-builds-secret: ${{ secrets.NIGHTLY_BUILDS }}
|
2024-01-05 04:44:31 +00:00
|
|
|
|
2023-12-04 03:14:54 +00:00
|
|
|
- name: Setup build dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y devscripts dput gpg debhelper qt5-qmake cmake
|
|
|
|
|
|
|
|
- name: Setup gpg key token for launchpad
|
|
|
|
env:
|
|
|
|
GPG_PRIVATE_KEY: ${{ secrets.PPA_SECRET_KEY }}
|
|
|
|
run: |
|
|
|
|
echo "$GPG_PRIVATE_KEY" > ~/.key
|
|
|
|
gpg --import ~/.key
|
|
|
|
|
|
|
|
- name: setup git
|
|
|
|
run: |
|
|
|
|
git config --global --add safe.directory /__w/subsurface/subsurface
|
|
|
|
git config --global --add safe.directory /__w/subsurface/subsurface/libdivecomputer
|
|
|
|
|
|
|
|
- name: Checkout googlemaps
|
|
|
|
run: |
|
|
|
|
cd ..
|
|
|
|
git clone https://github.com/subsurface/googlemaps
|
|
|
|
|
|
|
|
- name: run the launchpad make-package script
|
|
|
|
run: |
|
|
|
|
cd ..
|
2024-05-11 05:33:54 +00:00
|
|
|
bash -x subsurface/packaging/ubuntu/make-package.sh $GITHUB_REF_NAME
|
2023-12-04 03:14:54 +00:00
|
|
|
|