Skip to content

Commit

Permalink
fix bad folder
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Jul 22, 2024
1 parent 743fd90 commit fbdfd96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,18 @@ jobs:
if: ${{ github.event_name != 'pull_request' || matrix.qgis_version == 'master' }}
with:
name: ${{ matrix.qgis_version }}
path: ./build/
path: ./build/${{ matrix.qgis_version }}/html

- name: Create archive
if: ${{ github.event_name != 'pull_request' || matrix.qgis_version == 'master' }}
run: zip -r pyqgis-docs-${{ env.QGIS_VERSION }}.zip ./build/${{ env.QGIS_VERSION }}
run: zip -r pyqgis-docs-${{ matrix.qgis_version }}.zip ./build/${{ matrix.qgis_version }}/html

- name: Release
uses: softprops/action-gh-release@v2
if: ${{ github.event_name != 'pull_request' && matrix.qgis_version != 'master' }}
with:
tag_name: ${{ env.QGIS_VERSION }}
files: pyqgis-docs-${{ env.QGIS_VERSION }}.zip
tag_name: ${{ matrix.qgis_version }}
files: pyqgis-docs-${{ matrix.qgis_version }}.zip

deploy-docs:
if: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit fbdfd96

Please sign in to comment.