Skip to content

Commit

Permalink
Rename ubports mk dir to clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnius committed Jun 17, 2021
1 parent c70ebf9 commit 2996117
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
make install DESTDIR="/tmp/supertux" VERBOSE=1
./test_supertux2
ubports:
clickable:
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -109,18 +109,18 @@ jobs:
env:
BUILD_TYPE: ${{ (matrix.build_type == 'Debug') && '--debug' || '' }}
ARCH: ${{ matrix.arch }}
run: ~/.local/bin/clickable build --verbose ${BUILD_TYPE} --arch ${ARCH} --config mk/ubports/clickable.json
run: ~/.local/bin/clickable build --verbose ${BUILD_TYPE} --arch ${ARCH} --config mk/clickable/clickable.json
- uses: actions/upload-artifact@v2
with:
name: "ubports-${{ matrix.arch }}-${{ matrix.build_type }}-click"
path: build.ubports/*.click
name: "clickable-${{ matrix.arch }}-${{ matrix.build_type }}-click"
path: build.clickable/*.click
if-no-files-found: ignore
- name: Publish to Open Store
if: ${{ github.ref == 'refs/heads/master' && matrix.build_type == 'Release' }}
env:
ARCH: ${{ matrix.arch }}
OPENSTORE_KEY: ${{ secrets.OPENSTORE_KEY }}
run: ~/.local/bin/clickable publish "* $(git log -1 --pretty=%B | head -1)" --apikey ${OPENSTORE_KEY} --config mk/ubports/clickable.json --arch ${ARCH}
run: ~/.local/bin/clickable publish "* $(git log -1 --pretty=%B | head -1)" --apikey ${OPENSTORE_KEY} --config mk/clickable/clickable.json --arch ${ARCH}

wasm:
strategy:
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1066,8 +1066,8 @@ else(WIN32 AND NOT UNIX)
set(LINUX_DESKTOP_ICON "assets/supertux-256x256.png")
# FIXME: The "install" folder is a folder managed by Clickable and shouldn't be hardcoded here
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/supertux2.desktop.in "install/supertux2.desktop")
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/mk/ubports/supertux2.apparmor DESTINATION ".")
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mk/ubports/manifest.json.in ${CMAKE_CURRENT_BINARY_DIR}/install/manifest.json)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/mk/clickable/supertux2.apparmor DESTINATION ".")
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mk/clickable/manifest.json.in ${CMAKE_CURRENT_BINARY_DIR}/install/manifest.json)
set(APPS "\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/supertux2")
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux-256x256.png DESTINATION "assets")
else(UBUNTU_TOUCH)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2996117

Please sign in to comment.