Skip to content

Commit 9c79aec

Browse files
committed
ci: rename artifact
1 parent bf3fb89 commit 9c79aec

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/actions/local-network/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ runs:
1414
- name: Download JS build artifacts
1515
uses: actions/download-artifact@v4
1616
with:
17-
name: build-js-artifacts-${{ github.sha }}
17+
name: js-build-${{ github.sha }}
1818

1919
- name: Unpack JS build artifacts archive
2020
shell: bash
21-
run: tar -xf build-js-artifacts-${{ github.sha }}.tar
21+
run: tar -xf js-build-${{ github.sha }}.tar
2222

2323
- name: Get dashmate fingerprint
2424
id: dashmate-fingerprint

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: softwareforgood/check-artifact-v4-existence@v0
4444
id: check-artifact
4545
with:
46-
name: build-js-artifacts-${{ github.sha }}
46+
name: js-build-${{ github.sha }}
4747

4848
- name: Login to DockerHub
4949
uses: docker/login-action@v3
@@ -142,14 +142,14 @@ jobs:
142142
if: ${{ steps.check-artifact.outputs.exists != 'true' }}
143143

144144
- name: Create an archive of built files
145-
run: xargs -a artifacts_list.txt tar cvf build-js-artifacts-${{ github.sha }}.tar
145+
run: xargs -a artifacts_list.txt tar cvf js-build-${{ github.sha }}.tar
146146
if: ${{ steps.check-artifact.outputs.exists != 'true' }}
147147

148148
- name: Upload the archive of built files
149149
uses: actions/upload-artifact@v4
150150
with:
151-
name: build-js-artifacts-${{ github.sha }}
152-
path: build-js-artifacts-${{ github.sha }}.tar
151+
name: js-build-${{ github.sha }}
152+
path: js-build-${{ github.sha }}.tar
153153
retention-days: 1
154154
if-no-files-found: error
155155
if: ${{ steps.check-artifact.outputs.exists != 'true' }}
@@ -249,7 +249,7 @@ jobs:
249249
- name: Download JS build artifacts
250250
uses: actions/download-artifact@v4
251251
with:
252-
name: build-js-artifacts-${{ github.sha }}
252+
name: js-build-${{ github.sha }}
253253

254254
- name: Install macOS build deps
255255
if: runner.os == 'macOS'

.github/workflows/tests-build-js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: softwareforgood/check-artifact-v4-existence@v0
1717
id: check-artifact
1818
with:
19-
name: build-js-artifacts-${{ github.sha }}
19+
name: js-build-${{ github.sha }}
2020

2121
- name: Check out repo
2222
uses: actions/checkout@v4
@@ -89,7 +89,7 @@ jobs:
8989
- name: Upload the archive of built files
9090
uses: actions/upload-artifact@v4
9191
with:
92-
name: build-js-artifacts-${{ github.sha }}
92+
name: js-build-${{ github.sha }}
9393
path: ${{ steps.diff.outputs.files }}
9494
retention-days: 1
9595
if-no-files-found: error

.github/workflows/tests-codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Download JS build artifacts
3434
uses: actions/download-artifact@v4
3535
with:
36-
name: build-js-artifacts-${{ github.sha }}
36+
name: js-build-${{ github.sha }}
3737

3838
- name: Initialize CodeQL
3939
uses: github/codeql-action/init@v2

.github/workflows/tests-dashmate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Download JS build artifacts
4545
uses: actions/download-artifact@v4
4646
with:
47-
name: build-js-artifacts-${{ github.sha }}
47+
name: js-build-${{ github.sha }}
4848

4949
- name: Replace with pre-built images
5050
run: |

.github/workflows/tests-js-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Download JS build artifacts
3939
uses: actions/download-artifact@v4
4040
with:
41-
name: build-js-artifacts-${{ github.sha }}
41+
name: js-build-${{ github.sha }}
4242

4343
- name: Run ESLinter
4444
run: yarn workspace "${{ inputs.package }}" lint
@@ -69,7 +69,7 @@ jobs:
6969
- name: Download JS build artifacts
7070
uses: actions/download-artifact@v4
7171
with:
72-
name: build-js-artifacts-${{ github.sha }}
72+
name: js-build-${{ github.sha }}
7373

7474
- name: Create necessary dotenv files
7575
run: |

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,5 +245,5 @@ jobs:
245245
steps:
246246
- uses: geekyeggo/delete-artifact@v5
247247
with:
248-
name: build-js-artifacts-${{ github.sha }}
248+
name: js-build-${{ github.sha }}
249249
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || !github.event.pull_request.draft }}

0 commit comments

Comments
 (0)