Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] dev from KelvinTegelaar:dev #109

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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