diff --git a/.gitea/workflows/gitea-release.yaml b/.gitea/workflows/gitea-release.yaml index 1d4d0f8..f32d5d2 100644 --- a/.gitea/workflows/gitea-release.yaml +++ b/.gitea/workflows/gitea-release.yaml @@ -55,31 +55,31 @@ jobs: cd $PROJECT_PATH ./godot --headless --verbose --export-release "Linux" "build/$EXPORT_NAME.x86_64" - - name: MacOS Build - run: | - cd $PROJECT_PATH - ./godot --headless --verbose --export-release "macOS" "build/$EXPORT_NAME.zip" +# - name: MacOS Build +# run: | +# cd $PROJECT_PATH +# ./godot --headless --verbose --export-release "macOS" "build/$EXPORT_NAME.zip" - name: Upload Artifact Windows run: | #ls -la build curl --user ${{ github.repository_owner }}:${{ secrets.TOKEN }} \ --upload-file "build/$EXPORT_NAME.exe" \ - https://gitea.sanplex.tech/api/packages/sansan/generic/$PROJECT_NAME/$GAME_VERSION/$EXPORT_NAME.exe + https://gitea.sanplex.xyz/api/packages/sansan/generic/$PROJECT_NAME/$GAME_VERSION/$EXPORT_NAME.exe - name: Upload Artifact Linux run: | ls -la build curl --user ${{ github.repository_owner }}:${{ secrets.TOKEN }} \ --upload-file "build/$EXPORT_NAME.x86_64" \ - https://gitea.sanplex.tech/api/packages/sansan/generic/$PROJECT_NAME/$GAME_VERSION/$EXPORT_NAME.x86_64 + https://gitea.sanplex.xyz/api/packages/sansan/generic/$PROJECT_NAME/$GAME_VERSION/$EXPORT_NAME.x86_64 - - name: Upload Artifact MacOS - run: | - ls -la build - curl --user ${{ github.repository_owner }}:${{ secrets.TOKEN }} \ - --upload-file "build/$EXPORT_NAME.zip" \ - https://gitea.sanplex.tech/api/packages/sansan/generic/$PROJECT_NAME/$GAME_VERSION/$EXPORT_NAME.zip +# - name: Upload Artifact MacOS +# run: | +# ls -la build +# curl --user ${{ github.repository_owner }}:${{ secrets.TOKEN }} \ +# --upload-file "build/$EXPORT_NAME.zip" \ +# https://gitea.sanplex.xyz/api/packages/sansan/generic/$PROJECT_NAME/$GAME_VERSION/$EXPORT_NAME.zip - name: Create release uses: akkuman/gitea-release-action@v1