From e17aaa310ae910adadfbd041bd273b9434ee4e51 Mon Sep 17 00:00:00 2001 From: Jamie Little Date: Fri, 22 Nov 2024 12:37:20 -0600 Subject: [PATCH] Update GitHub actions to use new upload-artifact --- .../create-customization-package-zip.yml | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/create-customization-package-zip.yml b/.github/workflows/create-customization-package-zip.yml index fe356b60..df064488 100644 --- a/.github/workflows/create-customization-package-zip.yml +++ b/.github/workflows/create-customization-package-zip.yml @@ -1,27 +1,27 @@ -name: Create the customization package +name: Create the customization package run-name: Creating 01JHU_INST-JHU Customization Package Zip on: [push, workflow_dispatch] jobs: create-package: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Use Node.js 20 - uses: actions/setup-node@v3 - with: - node-version: 20.x + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 - - name: Build - run: | - npm install - gulp cleanCSS - gulp styles - node build.js - - - name: Archive production artifacts - uses: actions/upload-artifact@v3 - with: - name: 01JHU_INST-JHU - path: ./**/01JHU_INST-JHU + - name: Use Node.js 20 + uses: actions/setup-node@v3 + with: + node-version: 20.x + + - name: Build + run: | + npm install + gulp cleanCSS + gulp styles + node build.js + + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: 01JHU_INST-JHU + path: ./**/01JHU_INST-JHU