diff --git a/.github/workflows/build-app-offline.yml b/.github/workflows/build-app-offline.yml index 976994fc3..29679387c 100644 --- a/.github/workflows/build-app-offline.yml +++ b/.github/workflows/build-app-offline.yml @@ -16,18 +16,20 @@ jobs: - run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pyinstaller OpenCore-Patcher.spec - run: ./after_pyinstaller.sh - run: 'codesign -s "Developer ID Application: Mykola Grymalyuk (S74BDJXQMD)" -v --force --deep --timestamp --entitlements ./payloads/entitlements.plist -o runtime "dist/OpenCore-Patcher.app"' - - run: cd dist; zip -r ../OpenCore-Patcher-TUI-Offline.app.zip OpenCore-Patcher.app + - run: cd dist; zip -r ../OpenCore-Patcher-TUI.app.zip OpenCore-Patcher.app + - run: ./../sign-tui.sh - name: Upload App to Artifacts uses: actions/upload-artifact@v2 with: - name: OpenCore-Patcher-TUI-Offline.app - path: OpenCore-Patcher-TUI-Offline.app.zip + name: OpenCore-Patcher-TUI.app (Offline) + path: OpenCore-Patcher-TUI.app.zip - name: Upload to Release if: github.event_name == 'release' uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: OpenCore-Patcher-TUI-Offline.app.zip + asset_name: OpenCore-Patcher-TUI.app (Offline) + file: OpenCore-Patcher-TUI.app.zip tag: ${{ github.ref }} file_glob: true