Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Pylogmon committed Jul 26, 2023
1 parent 161913f commit 435f73a
Show file tree
Hide file tree
Showing 62 changed files with 42 additions and 5,979 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build Swift Binary

on: push

jobs:
build:
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Install Swift
run: |
brew install swift
- name: Build Swift Script
run: |
swiftc -target x86_64-apple-macos10.10 -o ocr-x86_64 main.swift
swiftc -target arm64-apple-macos11 -o ocr-arm64 main.swift
- name: Upload Binary
uses: actions/upload-artifact@v3
with:
name: ocr-x86_64
path: ./ocr-x86_64

- name: Upload Binary
uses: actions/upload-artifact@v3
with:
name: ocr-arm64
path: ./ocr-arm64
4 changes: 0 additions & 4 deletions Podfile

This file was deleted.

20 changes: 0 additions & 20 deletions Podfile.lock

This file was deleted.

Binary file removed Pods/.DS_Store
Binary file not shown.
Loading

0 comments on commit 435f73a

Please sign in to comment.