We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb097b commit 0b8dcf2Copy full SHA for 0b8dcf2
.github/workflows/deploy.yml
@@ -20,7 +20,7 @@ jobs:
20
- name: Upload Build Artifact
21
uses: actions/upload-artifact@v4
22
with:
23
- name: build
+ name: build-artifact
24
path: build
25
26
lint:
@@ -37,3 +37,23 @@ jobs:
37
- name: Lint
38
run: yarn lint
39
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
56
57
+ - name: Run artifact
58
+ run: node index.js
59
0 commit comments