Skip to content

Commit

Permalink
- Ensure directories
Browse files Browse the repository at this point in the history
  • Loading branch information
ParticleG committed Jul 15, 2022
1 parent bd7235d commit 9ac942f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ outputs:
runs:
using: "composite"
steps:
- name: Create directories
shell: bash
run: |
mkdir -p $RUNNER_TEMP/macOS/
mkdir -p ${{ inputs.output-folder }}
- name: Checkout love
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -288,11 +293,10 @@ runs:
-archivePath ${{ env.ARCHIVE_PATH }} \
-exportPath $RUNNER_TEMP/macOS/ \
-exportOptionsPlist $RUNNER_TEMP/macOS/love/platform/xcode/macosx/macos-copy-app.plist
- name: Make app zip and ensure output folder
- name: Make app zip
shell: bash
run: |
ditto -c -k --sequesterRsrc --keepParent $RUNNER_TEMP/macOS/${{ inputs.product-name }}.app $RUNNER_TEMP/macOS/${{ inputs.product-name }}.zip
mkdir -p ${{ inputs.output-folder }}
- name: Notarize application bundle
uses: cocoalibs/xcode-notarization-action@v1
with:
Expand Down

0 comments on commit 9ac942f

Please sign in to comment.