Skip to content

Commit

Permalink
build: Leave macOS codesigning as is, remove from CI for now
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Oct 20, 2023
1 parent 95794da commit 26a9b4e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/central.yml
Expand Up @@ -89,32 +89,32 @@ jobs:
with:
name: linux-zip
path: ./intiface-central-linux-x64.zip
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
- run: flutter config --enable-macos-desktop
name: flutter config
- run: flutter build macos --release --dart-define="SENTRY_DSN=${{ secrets.SENTRY_DSN }}"
name: flutter build
- name: Zip Release
run: zip -r intiface-central-macos-universal.zip build/macos/Build/Products/Release/intiface_central.app
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: macos-zip
path: ./intiface-central-macos-universal.zip
# macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: rust toolchain
# uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - uses: subosito/flutter-action@v2
# with:
# channel: 'stable'
# cache: true
# cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
# - run: flutter config --enable-macos-desktop
# name: flutter config
# - run: flutter build macos --release --dart-define="SENTRY_DSN=${{ secrets.SENTRY_DSN }}"
# name: flutter build
# - name: Zip Release
# run: zip -r intiface-central-macos-universal.zip build/macos/Build/Products/Release/intiface_central.app
# - name: Archive production artifacts
# uses: actions/upload-artifact@v3
# with:
# name: macos-zip
# path: ./intiface-central-macos-universal.zip
android:
runs-on: ubuntu-latest
steps:
Expand Down
Expand Up @@ -207,6 +207,7 @@
CODE_SIGN_ENTITLEMENTS = ../macos/Runner/DebugProfile.entitlements;
CODE_SIGN_IDENTITY = "-";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 0.0;
DEVELOPMENT_TEAM = MSRA4LCTEZ;
MARKETING_VERSION = 0.0.1;
Expand Down Expand Up @@ -237,6 +238,7 @@
CODE_SIGN_ENTITLEMENTS = ../macos/Runner/Release.entitlements;
CODE_SIGN_IDENTITY = "-";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 0.0;
DEVELOPMENT_TEAM = MSRA4LCTEZ;
MARKETING_VERSION = 0.0.1;
Expand Down

0 comments on commit 26a9b4e

Please sign in to comment.