From 67a99070b2aaffc47ae79ca92a564cba8c1530ac Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm Date: Thu, 12 Mar 2026 22:38:35 +0100 Subject: [PATCH] We are now running on github not gitea --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 756d188..58e13ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,23 +20,23 @@ jobs: - name: Version id: version run: | - cd ${{ gitea.workspace }} + cd ${{ github.workspace }} git fetch -a; echo "tag=$(git describe --tags `git rev-list --tags --max-count=1`)" >> $GITHUB_OUTPUT - name: Build run: | - mkdir ${{ gitea.workspace }}/build; cd ${{ gitea.workspace }}/build + mkdir ${{ github.workspace }}/build; cd ${{ github.workspace }}/build cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=./install/usr -DGIT_TAG=${{ steps.version.outputs.tag }} .. make -j $(nproc) make install - name: Create Appimage run: | - cd ${{ gitea.workspace }}/build/ + cd ${{ github.workspace }}/build/ appimagetool --appimage-extract-and-run -s deploy install/usr/share/applications/xyz.uvos.aceradio.desktop appimagetool --appimage-extract-and-run -s install - name: Upload Appimage uses: actions/upload-artifact@v6 with: name: aceradio-appimage - path: ${{ gitea.workspace }}/build/*.AppImage + path: ${{ github.workspace }}/build/*.AppImage