File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5757 run : BUILD_BRANCH=$(echo "${GITHUB_REF#refs/heads/}") npm run build
5858
5959 - name : Store assets
60- if : ${{ github.event_name == 'push' && (github.ref == 'refs/heads/impression_properties ' || github.ref == 'refs/heads/master') }}
60+ if : ${{ github.event_name == 'push' && (github.ref == 'refs/heads/development ' || github.ref == 'refs/heads/master') }}
6161 uses : actions/upload-artifact@v4
6262 with :
6363 name : assets
6868 name : Upload assets
6969 runs-on : ubuntu-20.04
7070 needs : build
71- if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/impression_properties ' }}
71+ if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/development ' }}
7272 strategy :
7373 matrix :
7474 environment :
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ const syncManagerOnlineCSFactory = syncManagerOnlineFactory(pollingManagerCSFact
2020
2121function getStorage ( settings ) {
2222 return settings . storage . type === STORAGE_LOCALSTORAGE ?
23- InLocalStorage ( settings . storage )
24- : settings . storage . __originalType === STORAGE_LOCALSTORAGE ?
25- __InLocalStorageMockFactory
26- : InMemoryStorageCSFactory ;
23+ InLocalStorage ( settings . storage ) :
24+ settings . storage . __originalType === STORAGE_LOCALSTORAGE ?
25+ __InLocalStorageMockFactory :
26+ InMemoryStorageCSFactory ;
2727}
2828
2929/**
You can’t perform that action at this time.
0 commit comments