forked from matijagrcic/azurechatgpt
-
Notifications
You must be signed in to change notification settings - Fork 45
143 lines (119 loc) · 3.89 KB
/
open-ai-app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: Build & deploy Next.js app to Azure Web App
# When this action will be executed
on:
# Automatically trigger it when detected changes in repo
push:
branches: [main]
# Allow manual workflow trigger
workflow_dispatch:
inputs:
templateRelease:
description: 'What (existing or NEW) release tag to point the Helper to'
type: string
required: true
createRelease:
description: 'Create a NEW release with that tag'
type: boolean
required: true
default: true
releaseNotes:
description: 'Provide your release notes'
type: string
required: true
default: true
env:
templateRelease: ${{ github.event.inputs.templateRelease }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🌱 Checkout to the branch
uses: actions/checkout@v3
- name: 🍏 Set up Node.js version
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: ⚙️ npm install and build
run: |
cd ./src
npm install
npm run build --if-present
cd ..
- name: 📂 Copy standalone into the root
run: cp -R ./src/.next/standalone ./site-deploy
- name: 📂 Copy static into the .next folder
run: cp -R ./src/.next/static ./site-deploy/.next/static
- name: 📂 Copy Public folder
run: cp -R ./src/public ./site-deploy/public
- name: 📦 Package Next application
run: |
cd ./site-deploy
zip Nextjs-site.zip ./* .next -qr
- name: 🔍 Diagnostics
run: |
ls ./src
ls ./src/.next
ls ./site-deploy
- name: ⬆️ Publish Next Application artifact
uses: actions/upload-artifact@v3
with:
name: Nextjs-site
path: ./site-deploy/Nextjs-site.zip
CreateRelease:
runs-on: ubuntu-latest
name: Create a Release
needs: [build]
if: ${{ github.event.inputs.createRelease == 'true' }}
steps:
- uses: actions/[email protected]
- name: ⬇️ Download artifact from build job
uses: actions/download-artifact@v3
if: ${{ github.event.inputs.createRelease == 'true' }}
with:
name: Nextjs-site
- name: Check that the GitHub release does not already exist
run: |
GHJSON=$(gh release view ${{env.templateRelease}} --json name) || GHJSON=""
if [ -z "$GHJSON" ]
then
echo "Release not found - great"
else
echo "Release already exists - aborting"
exit 1
fi
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Create GitHub release
run: |
GHJSON=$(gh release create ${{env.templateRelease}} '${{ github.workspace }}/Nextjs-site.zip' --latest --generate-notes -n "${{env.releaseNotes}}" )
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: "Production"
steps:
- name: ⬇️ Download artifact from build job
uses: actions/download-artifact@v3
with:
name: Nextjs-site
- name: 🗝️ Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: 🚀 Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ secrets.AZURE_APP_SERVICE_NAME }}
package: ${{ github.workspace }}/Nextjs-site.zip
- name: Publish a Release
id: publish-release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
${{ github.workspace }}/Nextjs-site.zip
- name: 🧹 Cleanup
run: rm ${{ github.workspace }}/Nextjs-site.zip