Skip to content

Resolve cached images not updating on build by updating two Content.json files to point to four renamed .png file names. #456

Resolve cached images not updating on build by updating two Content.json files to point to four renamed .png file names.

Resolve cached images not updating on build by updating two Content.json files to point to four renamed .png file names. #456

Workflow file for this run

name: Fastlane Tests
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-15
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- uses: actions/checkout@v4
- name: Use sample configuration
run: cp BeeKit/Config.swift.sample BeeKit/Config.swift
- name: Setup ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.5'
bundler-cache: true
- name: Enable Macros
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Run tests
run: bundle exec fastlane ci
- name: Upload report
uses: actions/upload-artifact@v4
if: always() # always run even if the previous step fails
with:
name: test-output
path: fastlane/test_output
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always() # always run even if the previous step fails
with:
report_paths: 'fastlane/test_output/report.junit'