mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-27 08:58:28 +02:00
12 lines
301 B
YAML
12 lines
301 B
YAML
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: npm install and build webpack
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
- uses: actions/upload-artifact@main
|
|
with:
|
|
name: webpack artifacts
|
|
path: public/
|