Skip to content

build: first commit

build: first commit #6

Workflow file for this run

name: Release
on:
push:
branches: [main]
tags: ['v*']
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build Driver
run: |
xcodebuild -project Driver.xcodeproj \
-scheme Driver \
-configuration Release \
build \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO
- name: Find Driver
run: |
find ~/Library/Developer/Xcode/DerivedData -name "Driver.driver" -type d
- name: Create Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}