Skip to content

Commit

Permalink
Revert "Delete .github directory"
Browse files Browse the repository at this point in the history
This reverts commit 07bc869.
  • Loading branch information
cranci1 committed Mar 30, 2024
1 parent ddfe889 commit 0e2c448
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
Binary file added .github/.DS_Store
Binary file not shown.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build IPA

on:
push:
branches:
- main

jobs:
build:
runs-on: macos-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Xcode
run: sudo xcode-select --switch /Applications/Xcode_13.2.1.app/Contents/Developer

- name: Make ipabuild.sh executable
run: chmod +x ipabuild.sh

- name: Run ipabuild.sh
run: ./ipabuild.sh

- name: Find AnimeGen IPA file
id: find_ipa
run: |
IPA_PATH=$(find . -name "AnimeGen.ipa" -print -quit)
echo "Found AnimeGen IPA file at $IPA_PATH"
echo "::set-output name=ipa_path::$IPA_PATH"
- name: Upload AnimeGen IPA artifact
if: steps.find_ipa.outputs.ipa_path != ''
uses: actions/upload-artifact@v2
with:
name: AnimeGen-ipa-artifact
path: ${{ steps.find_ipa.outputs.ipa_path }}

0 comments on commit 0e2c448

Please sign in to comment.