Skip to content

Commit

Permalink
Merge pull request #2 from salemlf/copy_files_step
Browse files Browse the repository at this point in the history
Swapping the steps where files are copied and fastlane is installed
  • Loading branch information
salemlf authored Feb 4, 2024
2 parents d960351 + f0b4e33 commit c188c27
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 c188c27

Please sign in to comment.