Skip to content

Commit

Permalink
Test upload and download of artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
aadnekar committed Dec 14, 2023
1 parent 0d3ee0d commit a0b797c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,23 @@ jobs:
run: npm test
- name: Build for Production
run: npm run build:prod
- name: Upload build files
uses: actions/upload-artifacts@v3
with:
name: build_${{ inputs.runner }}
path: dist/
package:
runs-on: ["${{ inputs.runner }}"]
steps:
- name: 'Download artifacts "build_${{ inputs.runner }}"'
uses: actions/download-artifact@v3
with:
name: build_${{ inputs.runner }}
path: dist/
- name: 'Debug: Print Directory'
run: ls -lR




## Should also create chache-task
Expand Down

0 comments on commit a0b797c

Please sign in to comment.