Compare commits
2 commits
5cd7466c1b
...
3d5ce6a1ba
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d5ce6a1ba | |||
| bb7259f7f6 |
2 changed files with 6 additions and 6 deletions
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
container: node:22
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
uses: https://github.com/actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
|
@ -26,7 +26,7 @@ jobs:
|
|||
run: npm run build
|
||||
|
||||
- name: Upload Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: https://github.com/actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: dist/
|
||||
|
|
@ -37,7 +37,7 @@ jobs:
|
|||
container: node:22
|
||||
steps:
|
||||
- name: Download Build Artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: https://github.com/actions/download-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: dist
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
container: node:22
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
uses: https://github.com/actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
|
@ -26,7 +26,7 @@ jobs:
|
|||
run: npm run build
|
||||
|
||||
- name: Upload Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: https://github.com/actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: dist/
|
||||
|
|
@ -37,7 +37,7 @@ jobs:
|
|||
container: node:22
|
||||
steps:
|
||||
- name: Download Build Artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: https://github.com/actions/download-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: dist
|
||||
|
|
|
|||
Loading…
Reference in a new issue