Skip to content

Commit

Permalink
ci: Resolve deprecation warning (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
null2264 authored Jul 12, 2024
1 parent 3f0dd53 commit 6efd0fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ jobs:

runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Clone Acidanthera/MacKernelSDK
run: git clone --depth 1 https://github.com/acidanthera/MacKernelSDK.git
- name: get shortsha
id: vars
run: |
echo ::set-output name=sha_short::$(git rev-parse --short=8 ${{ github.sha }})
echo "sha_short=$(git rev-parse --short=8 ${{ github.sha }})" >> $GITHUB_OUTPUT
- name: build
env:
VOODOORMI_SHA: VoodooRMI-${{ steps.vars.outputs.sha_short }}
run: |
mkdir -p build/${VOODOORMI_SHA}/{Debug,Release}
xcodebuild -configuration Debug -scheme VoodooRMI -derivedDataPath build clean build
xcodebuild -configuration Release -scheme VoodooRMI -derivedDataPath build build
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: VoodooRMI
path: build/Build/Products/*/*.zip

0 comments on commit 6efd0fc

Please sign in to comment.