Hello,
I have a GitHub Actions job that contains 2 steps:
- Fastlane
- Print message
In Fastlane I’m getting some data and trying to expose it as ENV variable to be available for the next GA step
Fastlane part that I’ve tried:
echo(message:"VERSION_NAME=#{name} >> $GITHUB_ENV")
ENV["VERSION_NAME"] = name
echo(message:"::set-env name=VERSION_NAME::#{name}")
GH Part that I use
- name: Build with Fastlane
run: fastlane code
- name: Print the message
run: echo "Build for ${{ env.VERSION_NAME }} is ready for testing."
Any ideas how to share data I got inside Fastlane between steps?