Merge pull request #15 from KelvinTegelaar/main #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CIPP Frontend Build | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
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/checkout@v3 | |
# Set up Node.js | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
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 | |