diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fc0b08..03fe04a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d58b39a..c749e24 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 }}