Skip to content

Commit 8d08048

Browse files
Revert "upload CDN rc"
1 parent 4c6821b commit 8d08048

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
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
@@ -68,7 +68,7 @@ jobs:
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:

src/factory/browser.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ const syncManagerOnlineCSFactory = syncManagerOnlineFactory(pollingManagerCSFact
2020

2121
function 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
/**

0 commit comments

Comments
 (0)