Skip to content

Commit

Permalink
[GHA MAC] Use default Xcode version
Browse files Browse the repository at this point in the history
Was hardcoded on 13.0 from before it turns default one
ci release
  • Loading branch information
RoiArthurB committed Apr 25, 2022
1 parent e12e3da commit 17729e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/actions/macOS-sign/action.yaml
Expand Up @@ -33,7 +33,6 @@ runs:
shell: bash
run: |
# Change XCode version
sudo xcode-select -s "/Applications/Xcode_13.0.app"
export JAVA_HOME=$JAVA_HOME_11_X64
mkdir -p ${{ github.workspace }}/artifacts/work
Expand Down
4 changes: 2 additions & 2 deletions travis/mac-sign.sh
Expand Up @@ -12,7 +12,7 @@ function signInJar(){
echo "$1"

# Reverse list to prevent concurrency signature submition per architecture
if [[ $IS_WITH_JDK ]]; then
if $IS_WITH_JDK; then
tail -r filelist.txt > reverse-filelist.txt
rm filelist.txt
mv reverse-filelist.txt filelist.txt
Expand Down Expand Up @@ -43,7 +43,7 @@ echo $IS_WITH_JDK
find ./ -name "*jar" > jarlist.txt

# Reverse list to prevent concurrency signature submition per architecture
if [[ $IS_WITH_JDK ]]; then
if $IS_WITH_JDK; then
tail -r filelist.txt > reverse-filelist.txt
rm filelist.txt
mv reverse-filelist.txt filelist.txt
Expand Down

0 comments on commit 17729e0

Please sign in to comment.