feat: add debian package: ros-iron-septentrio-gnss-driver_1.5.3-0jamm… #278
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: Update Lists | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '**.deb' | |
branches: | |
- main | |
jobs: | |
build: | |
name: Update Lists | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
lfs: 'true' | |
- name: Import GPG key | |
id: import_gpg | |
uses: crazy-max/ghaction-import-gpg@v4 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
- name: Update PPA | |
env: | |
GPG_KEY_NAME: ${{ secrets.GPG_PRIVATE_KEY_NAME }} | |
run: | | |
ls ./debian | |
./scripts/update.sh | |
- name: Git config | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Github CI" | |
- name: Git push | |
run: | | |
git add . | |
git commit -m "release: update package lists" | |
git push |