mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
ci: revert macOS package signing and remove temp artifacts
This commit is contained in:
parent
9b6fd3b147
commit
be54361e9d
2 changed files with 12 additions and 1 deletions
12
.github/workflows/package.yml
vendored
12
.github/workflows/package.yml
vendored
|
@ -31,6 +31,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: package.${{ matrix.runtime }}
|
name: package.${{ matrix.runtime }}
|
||||||
path: build/sourcegit_*.zip
|
path: build/sourcegit_*.zip
|
||||||
|
- name: Delete temp artifacts
|
||||||
|
uses: geekyeggo/delete-artifact@v5
|
||||||
|
with:
|
||||||
|
name: sourcegit.${{ matrix.runtime }}
|
||||||
osx-app:
|
osx-app:
|
||||||
name: Package OSX app
|
name: Package OSX app
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
@ -58,6 +62,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: package.${{ matrix.runtime }}
|
name: package.${{ matrix.runtime }}
|
||||||
path: build/sourcegit_*.zip
|
path: build/sourcegit_*.zip
|
||||||
|
- name: Delete temp artifacts
|
||||||
|
uses: geekyeggo/delete-artifact@v5
|
||||||
|
with:
|
||||||
|
name: sourcegit.${{ matrix.runtime }}
|
||||||
linux:
|
linux:
|
||||||
name: Package Linux
|
name: Package Linux
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -93,3 +101,7 @@ jobs:
|
||||||
build/sourcegit-*.AppImage
|
build/sourcegit-*.AppImage
|
||||||
build/sourcegit_*.deb
|
build/sourcegit_*.deb
|
||||||
build/sourcegit-*.rpm
|
build/sourcegit-*.rpm
|
||||||
|
- name: Delete temp artifacts
|
||||||
|
uses: geekyeggo/delete-artifact@v5
|
||||||
|
with:
|
||||||
|
name: sourcegit.${{ matrix.runtime }}
|
||||||
|
|
|
@ -19,6 +19,5 @@ mv SourceGit SourceGit.app/Contents/MacOS
|
||||||
cp resources/app/App.icns SourceGit.app/Contents/Resources/App.icns
|
cp resources/app/App.icns SourceGit.app/Contents/Resources/App.icns
|
||||||
sed "s/SOURCE_GIT_VERSION/$VERSION/g" resources/app/App.plist > SourceGit.app/Contents/Info.plist
|
sed "s/SOURCE_GIT_VERSION/$VERSION/g" resources/app/App.plist > SourceGit.app/Contents/Info.plist
|
||||||
rm -rf SourceGit.app/Contents/MacOS/SourceGit.dsym
|
rm -rf SourceGit.app/Contents/MacOS/SourceGit.dsym
|
||||||
codesign --force --deep --sign - SourceGit.app
|
|
||||||
|
|
||||||
zip "sourcegit_$VERSION.$RUNTIME.zip" -r SourceGit.app
|
zip "sourcegit_$VERSION.$RUNTIME.zip" -r SourceGit.app
|
||||||
|
|
Loading…
Reference in a new issue