We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359f885 commit b6d8573Copy full SHA for b6d8573
.github/workflows/build.yml
@@ -40,10 +40,9 @@ jobs:
40
run: |
41
mkdir -p __build
42
BUILD_OUTPUT="__build" bundle exec middleman build
43
- - name: Generate HTML Preview
44
- id: html_preview
45
- uses: pavi2410/html-preview-action@v2
+ - name: Upload result
+ uses: actions/upload-artifact@v4
46
with:
47
- html_file: '__build/index.html'
48
- - name: Access preview
49
- run: echo "${{steps.html_preview.outputs.url}}"
+ name: build-${{ github.event.number }}
+ path: '__build/**/*'
+ retention-days: 30
0 commit comments