Skip to content

Commit

Permalink
Merge pull request #109 from KelvinTegelaar/dev
Browse files Browse the repository at this point in the history
[pull] dev from KelvinTegelaar:dev
  • Loading branch information
pull[bot] authored Feb 14, 2025
2 parents 1e22c96 + db9f3ad commit 909cc07
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/cipp_dev_build.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
name: CIPP Frontend Build
name: CIPP Frontend Dev Build

on:
push:
branches:
- dev
workflow_dispatch:

permissions:
contents: write

jobs:
build:
if: github.event.repository.fork == false
Expand All @@ -18,11 +15,11 @@ jobs:
steps:
# Checkout the repository
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4.2.2

# Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4.2.0
with:
node-version: '20.18.1'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cipp_frontend_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

# Install dependencies
- name: Install Dependencies
run: npm install
run: yarn install

# Build the project
- name: Build Project
Expand All @@ -38,6 +38,7 @@ jobs:
- 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
Expand All @@ -49,4 +50,3 @@ jobs:
source_folder: build/
destination_folder: /
delete_if_exists: true

0 comments on commit 909cc07

Please sign in to comment.