Skip to content

Commit e296e6f

Browse files
committed
Fun
1 parent dec14cf commit e296e6f

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ jobs:
8383
run: npm ci
8484
- name: Download Artifacts
8585
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
86-
- name: Relocate Artifacts
87-
run: mv angularfire dist
86+
with:
87+
name: angularfire-${{ github.run_id }}
88+
path: dist
8889
- name: Test Node
8990
run: |
9091
npm run build:jasmine
@@ -134,8 +135,9 @@ jobs:
134135
key: firebase_emulators
135136
- name: Download Artifacts
136137
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
137-
- name: Relocate Artifacts
138-
run: mv angularfire dist
138+
with:
139+
name: angularfire-${{ github.run_id }}
140+
path: dist
139141
- name: Test browser
140142
run: npm run test:${{ matrix.browser }}
141143

@@ -211,9 +213,12 @@ jobs:
211213
check-latest: false
212214
- name: 'Download Artifacts'
213215
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
216+
with:
217+
name: angularfire-${{ github.run_id }}
218+
path: dist
214219
- name: Publish
215220
run: |
216-
cd ./angularfire/packages-dist
221+
cd ./dist/packages-dist
217222
chmod +x publish.sh
218223
./publish.sh
219224
env:

0 commit comments

Comments
 (0)