mirror of
https://github.com/actions/download-artifact.git
synced 2025-11-02 06:53:41 +00:00
13 lines
301 B
YAML
13 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/
|