Skip to content

Commit

Permalink
Update GitHub actions to use new upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
little9 committed Nov 22, 2024
1 parent c6604d8 commit e17aaa3
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/create-customization-package-zip.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e17aaa3

Please sign in to comment.