Skip to content

Commit

Permalink
Swapping the steps where files are copied and fastlane is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
salemlf committed Feb 4, 2024
1 parent d960351 commit f0b4e33
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,6 @@ runs:
echo "${KEYSTORE_CONTENT}" | base64 -d > keystore.jks
fi
shell: sh
- id: "INSTALL_FASTLANE"
env:
FASTLANE_VERSION: ${{ inputs.fastlane-version }}
run: bundle add fastlane --version ${FASTLANE_VERSION}
shell: sh
- id: "COPY_FILES"
env:
ACTION_PATH: ${{ github.action_path }}
Expand All @@ -99,6 +94,11 @@ runs:
cp ${ACTION_PATH}/Gemfile ./
fi
shell: sh
- id: "INSTALL_FASTLANE"
env:
FASTLANE_VERSION: ${{ inputs.fastlane-version }}
run: bundle add fastlane --version ${FASTLANE_VERSION}
shell: sh
- id: "RUN_FASTLANE"
env:
BUILD_TYPE: ${{ inputs.build-type }}
Expand Down

0 comments on commit f0b4e33

Please sign in to comment.