Skip to content

Commit d65eb2f

Browse files
committed
Update pipeline_deployment.yaml artifact
1 parent 96ea74b commit d65eb2f

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed
Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
1-
name: Pipeline
2-
1+
name: Pipeline deployment
32
on: [push, pull_request]
4-
53
jobs:
64
deployment:
75
runs-on: ubuntu-slim
8-
96
env:
107
RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
11-
128
steps:
139
- name: Checkout repository
1410
uses: actions/checkout@v6
1511
with:
1612
fetch-depth: 0
17-
1813
- name: Setup Node.js environment
1914
uses: actions/setup-node@v6
2015
with:
2116
node-version: "24"
22-
2317
- name: Install dependencies
2418
working-directory: App
2519
run: npm install
26-
2720
- name: Build
2821
working-directory: App
2922
run: npm run build
23+
- name: Upload artifact
24+
uses: actions/upload-artifact@v6
25+
with:
26+
name: next-build
27+
path: App/.next

0 commit comments

Comments
 (0)