Skip to content

Commit 0b8dcf2

Browse files
committed
feat: create fake release job
1 parent 2fb097b commit 0b8dcf2

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Upload Build Artifact
2121
uses: actions/upload-artifact@v4
2222
with:
23-
name: build
23+
name: build-artifact
2424
path: build
2525

2626
lint:
@@ -37,3 +37,23 @@ jobs:
3737
- name: Lint
3838
run: yarn lint
3939

40+
release:
41+
name: Release
42+
runs-on: ubuntu-latest
43+
needs: build
44+
45+
steps:
46+
- name: Checkout
47+
uses: actions/checkout@v4
48+
49+
- name: Setup
50+
uses: ./.github/actions/setup
51+
52+
- name: Download Build Artifact
53+
uses: actions/download-artifact@v4
54+
with:
55+
name: build-artifact
56+
57+
- name: Run artifact
58+
run: node index.js
59+

0 commit comments

Comments
 (0)