Skip to content

Commit

Permalink
macos ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Russ committed Feb 12, 2024
1 parent b159c1a commit 06e88b1
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,26 @@ jobs:
BUILD_STANDALONE_ARTIFACT_NAME: "Player-macOS-dmg-${{github.ref_name}}-${{github.sha}}"
STANDALONE_BUILD_PATH: "${{ github.workspace }}/UI/macOS/bin/Release/OCTOPUS RAW Player.app"
STANDALONE_BUILD_DIR: "${{ github.workspace }}/UI/macOS/bin/Release"
STANDALONE_BUILD_DMG_PATH: "${{ github.workspace }}/UI/macOS/bin/Release/OCTOPUS RAW Player.dmg"
STANDALONE_BUILD_DMG_PATH: "${{ github.workspace }}/UI/macOS/bin/Release/OCTOPUS RAW Player"
STANDALONE_ARTIFACT_PATH: "${{ github.workspace }}/artifact/standalone"

steps:
- uses: actions/checkout@v3
with:
lfs: 'true'


- name: Read Version
id: version
uses: juliangruber/read-file-action@v1
with:
path: "${{ github.workspace }}/Version"

- name: Apply Version
shell: bash
run: ./ApplyVersion.sh
run: |
./ApplyVersion.sh
dmg_path="${{ env.STANDALONE_BUILD_DMG_PATH }} ${{ steps.version.outputs.content }}.dmg"
echo "STANDALONE_BUILD_DMG_PATH=$dmg_path" >> $GITHUB_ENV
- name: "Import distribution certificate"
uses: apple-actions/import-codesign-certs@v2
Expand Down

0 comments on commit 06e88b1

Please sign in to comment.