Skip to content

Commit

Permalink
ci: fix release-fastlane job
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Sep 26, 2023
1 parent 751a104 commit cf2975c
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
ndk_version: ['25.2.9519653']
node_version: [16]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Set RELEASE
run: |
echo "RELEASE=${{ startsWith(github.ref_name, 'v') }}" >> $GITHUB_ENV
- name: Cache JNI libs
uses: actions/cache@v1
uses: actions/cache@v3
id: cache-jniLibs
env:
cache-name: jniLibs
Expand Down Expand Up @@ -403,6 +403,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v') # only on runs triggered from tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Download release APK
uses: actions/download-artifact@v3
Expand All @@ -414,6 +415,16 @@ jobs:
working-directory: dist
run: ls -R

# Ruby & Fastlane
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- name: Install fastlane
run: |
gem install bundler
bundle install
# detect if version tag is stable/beta
- uses: nowsprinting/check-version-format-action@v2
id: version
Expand Down

0 comments on commit cf2975c

Please sign in to comment.