Skip to content

Попытка подписать приложение #4

Попытка подписать приложение

Попытка подписать приложение #4

Workflow file for this run

name: Build and Release
on:
push:
branches:
- master
jobs:
build:
name: Build macOS App
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.3.1'
- name: Build macOS App
run: xcodebuild -scheme "CalendarMenuApp" -workspace "CalendarMenuApp.xcodeproj/project.xcworkspace" -configuration Release clean archive -archivePath build/CalendarMenuApp.xcarchive CODE_SIGN_STYLE="Manual" CODE_SIGN_IDENTITY="Apple Development: Your Team ID (66US7746XD)" CODE_SIGNING_REQUIRED=NO

Check failure on line 24 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
- name: Create DMG
run: |
mkdir -p build/dmg
cp -R build/CalendarMenuApp.xcarchive/Products/Applications/*.app build/dmg
hdiutil create -volname "CalendarMenuApp" -srcfolder build/dmg -ov -format UDZO build/CalendarMenuApp.dmg
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/CalendarMenuApp.dmg
asset_name: CalendarMenuApp.dmg
asset_content_type: application/x-diskimage