Skip to content

update node16 to node20 #185

update node16 to node20

update node16 to node20 #185

name: Build and deploy on staging
on:
workflow_dispatch:
push:
branches:
- staging
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: gulp build
- name: Get current time
uses: josStorer/[email protected]
id: current-time
with:
format: DD-MM-YYYY
- uses: cschleiden/[email protected]
name: inject date
with:
files: '["**/*.html"]'
env:
BUILD_DATE: "${{ steps.current-time.outputs.formattedTime }}"
- name: Run the Transformer
run: |
pushd ./data/scripts
pip3 install pandas
python ./transform_to_ft.py
popd
- name: include FTA version
run: |
mkdir dist/fta
cp ./data/scripts/aks_checklist.en.json ./dist/fta/aks_checklist.en.json
- uses: actions/upload-artifact@v4
with:
name: CheckList
path: dist
- name: Azure Static Website Deploy
uses: feeloor/[email protected]
env:
# The name of the directory you want to upload
SOURCE_DIR: "./dist"
# Your Azure Client ID
AZURE_CLIENT_ID: "${{secrets.CLIENT_ID}}"
# Your Azure TENANT ID
AZURE_TENANT_ID: "${{secrets.AZ_TENANT}}"
# Your Azure Secret
AZURE_SECRET: "${{secrets.SECRET_ID}}"
# Your Azure Subscription ID
AZURE_SUBSCRIPTION_ID: "${{secrets.SUBSCRIPTION_ID}}"
# Your Azure Storage Account Name
AZURE_STORAGE_ACCOUNT_NAME: "stotheakscheckliststg"
# The index document that you specify when you enable static website hosting, appears when users open the site and dont specify a specific file.
AZURE_INDEX_DOCUMENT_NAME: "index.html"
FORCE_OVERWRITE: "true"