Skip to content

Commit

Permalink
Merge pull request #101 from pwa-builder/comp-fix
Browse files Browse the repository at this point in the history
Comp fix
  • Loading branch information
jgw96 authored Oct 1, 2024
2 parents 6656e47 + 27eeb05 commit ed6e340
Show file tree
Hide file tree
Showing 4 changed files with 583 additions and 167 deletions.
75 changes: 75 additions & 0 deletions .github/workflows/comp-fix_pwabuilder-apiv2-node(dev).yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/azure/functions-action
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy Node.js project to Azure Function App - pwabuilder-apiv2-node

on:
push:
branches:
- comp-fix
workflow_dispatch:

env:
AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
NODE_VERSION: '18.x' # set this to the node version to use (supports 8.x, 10.x, 12.x)

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v4

- name: Setup Node ${{ env.NODE_VERSION }} Environment
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}

- name: 'Resolve Project Dependencies Using Npm'
shell: bash
run: |
pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
npm install
npm run build --if-present
popd
- name: Zip artifact for deployment
run: zip release.zip ./* -r

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
with:
name: node-app
path: release.zip

deploy:
runs-on: ubuntu-latest
needs: build

permissions:
id-token: write #This is required for requesting the JWT

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v4
with:
name: node-app

- name: Unzip artifact for deployment
run: unzip release.zip

- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_2A6E9B9CBFB54B5A95186843DE1D3E92 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_BECF5140E58D4E4DAF8C3ECDD90CB3D3 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_22B2F92B4B304841A09CCAE322E404E5 }}

- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
id: fa
with:
app-name: 'pwabuilder-apiv2-node'
slot-name: 'dev'
package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}

Loading

0 comments on commit ed6e340

Please sign in to comment.