forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.17 KB
/
cipp_frontend_build.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
name: CIPP Frontend Build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
if: github.event.repository.fork == false
name: Build and Upload CIPP Frontend
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout Code
uses: actions/[email protected]
# Set up Node.js
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: '20.18.1'
# Install dependencies
- name: Install Dependencies
run: yarn install
# Build the project
- name: Build Project
run: npm run build
# Create ZIP File in a New Source Directory
- name: Prepare and Zip Build Files
run: |
mkdir -p build
cp staticwebapp.config.json out/
zip -r build/latest.zip out
# Upload to Azure Blob Storage
- name: Azure Blob Upload
uses: LanceMcCarthy/[email protected]
with:
connection_string: ${{ secrets.AZURE_CONNECTION_STRING }}
container_name: cipp
source_folder: build/
destination_folder: /
delete_if_exists: true