Skip to content

Revert "aaded secrets.swift for succesful build" #92

Revert "aaded secrets.swift for succesful build"

Revert "aaded secrets.swift for succesful build" #92

Workflow file for this run

name: Build and Release IPA
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build IPA
run: |
xcodebuild -project AnimeGen.xcodeproj -scheme AnimeGen -configuration Release -destination 'generic/platform=iOS' clean archive -archivePath $PWD/build/AnimeGen.xcarchive -allowProvisioningUpdates
xcodebuild -exportArchive -archivePath $PWD/build/AnimeGen.xcarchive -exportPath $PWD/build
- name: Archive and Upload Artifact
uses: actions/upload-artifact@v2
with:
name: AnimeGen-IPA
path: $PWD/build/*.ipa