Skip to content

Commit

Permalink
Merge pull request #49 from JanCaha/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
JanCaha authored Aug 4, 2024
2 parents 59fa62c + 0b7f59c commit 5cd2ecc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/create_releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
sudo apt install ./_packages/viewshed_*.deb
- name: Upload DEB file as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: viewshed
path: _packages/viewshed_*.deb
Expand All @@ -109,19 +109,19 @@ jobs:
mv _packages/viewshed_*.deb .
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: viewshed_*.deb
tag_name: "v${{steps.version.outputs.VERSION}}"

- name: Deploy Documentation
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./documentation
publish_branch: gh-pages

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{env.PYTHON_VERSION}}
architecture: 'x64'
Expand All @@ -141,7 +141,7 @@ jobs:
cd python-package
python -m build .
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-viewshed
path: python-package/dist/viewshed*.whl
Expand All @@ -158,7 +158,7 @@ jobs:
uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: viewshed

Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
tags: cahik/viewshed:latest

- name: Download artifact WHL
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-viewshed

Expand Down
4 changes: 2 additions & 2 deletions install.sh → scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ cmake \
-D BUILD_TESTS:bool=off \
-D CELL_EVENT_DATA_FLOAT:bool=on \
-D OUTPUT_RASTER_DATA_FLOAT:bool=on \
-D NEEDS_QT:bool=on \
-D CMAKE_INSTALL_PREFIX=/usr
-D CMAKE_INSTALL_PREFIX=/usr \
-D NEEDS_QT:bool=on

cmake --build build --config Release --target library_viewshed
cmake --build build --config Release --target create_binaries
Expand Down
File renamed without changes.

0 comments on commit 5cd2ecc

Please sign in to comment.