Remove misleading comment about smtk2ssrf build. #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: Ubuntu Launchpad Build | |
on: | |
push: | |
paths-ignore: | |
- scripts/docker/** | |
branches: | |
- master | |
- current | |
jobs: | |
push-to-ppa: | |
name: Submit build to Ubuntu Launchpad | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: set the version information | |
id: version_number | |
uses: ./.github/actions/manage-version | |
with: | |
nightly-builds-secret: ${{ secrets.NIGHTLY_BUILDS }} | |
- 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 .. | |
bash -x subsurface/packaging/ubuntu/make-package.sh $GITHUB_REF_NAME | |