Skip to content

Commit

Permalink
ci: add pdal
Browse files Browse the repository at this point in the history
  • Loading branch information
HideBa committed Feb 3, 2024
1 parent 946faef commit 1b9c9ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
with:
python-version: 3.11.1

- name: Install PDAL
run: |
sudo apt-get update
sudo apt-get install -y pdal
- name: Cache pip packages
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -58,8 +63,8 @@ jobs:
- name: Commit exported requirements
run: |
git config --global user.name "${{ secrets.GITHUB_USER_NAME }}"
git config --global user.email "${{ secrets.GITHUB_USER_EMAIL }}"
git config --global user.name "${{ secrets.GH_USER_NAME }}"
git config --global user.email "${{ secrets.GH_USER_EMAIL }}"
git add requirements.txt requirements.dev.txt
git commit -m "Update requirements"
git push origin main
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: v${{ github.run_number }}
release_name: Release ${{ github.run_number }}
Expand Down

0 comments on commit 1b9c9ef

Please sign in to comment.