We are now running on github not gitea

This commit is contained in:
Carl Philipp Klemm 2026-03-12 22:38:35 +01:00
parent f8202fc3ab
commit 67a99070b2

View file

@ -20,23 +20,23 @@ jobs:
- name: Version - name: Version
id: version id: version
run: | run: |
cd ${{ gitea.workspace }} cd ${{ github.workspace }}
git fetch -a; git fetch -a;
echo "tag=$(git describe --tags `git rev-list --tags --max-count=1`)" >> $GITHUB_OUTPUT echo "tag=$(git describe --tags `git rev-list --tags --max-count=1`)" >> $GITHUB_OUTPUT
- name: Build - name: Build
run: | 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 }} .. cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=./install/usr -DGIT_TAG=${{ steps.version.outputs.tag }} ..
make -j $(nproc) make -j $(nproc)
make install make install
- name: Create Appimage - name: Create Appimage
run: | 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 deploy install/usr/share/applications/xyz.uvos.aceradio.desktop
appimagetool --appimage-extract-and-run -s install appimagetool --appimage-extract-and-run -s install
- name: Upload Appimage - name: Upload Appimage
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v6
with: with:
name: aceradio-appimage name: aceradio-appimage
path: ${{ gitea.workspace }}/build/*.AppImage path: ${{ github.workspace }}/build/*.AppImage