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 96ea74b commit d65eb2fCopy full SHA for d65eb2f
.github/workflows/pipeline_deployment.yaml
@@ -1,29 +1,27 @@
1
-name: Pipeline
2
-
+name: Pipeline deployment
3
on: [push, pull_request]
4
5
jobs:
6
deployment:
7
runs-on: ubuntu-slim
8
9
env:
10
RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
11
12
steps:
13
- name: Checkout repository
14
uses: actions/checkout@v6
15
with:
16
fetch-depth: 0
17
18
- name: Setup Node.js environment
19
uses: actions/setup-node@v6
20
21
node-version: "24"
22
23
- name: Install dependencies
24
working-directory: App
25
run: npm install
26
27
- name: Build
28
29
run: npm run build
+ - name: Upload artifact
+ uses: actions/upload-artifact@v6
+ with:
+ name: next-build
+ path: App/.next
0 commit comments