Skip to content

Commit

Permalink
Merge pull request #316 from alphagov/Adding-artifact-verification
Browse files Browse the repository at this point in the history
Adding artifact verification step
  • Loading branch information
annecremin authored Feb 5, 2025
2 parents 6d3bdb0 + b3ed910 commit d029c0d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,15 @@ jobs:
run: ls -la ./build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v2
with:
path: ./build
retention-days: 1

- name: Verify artifact
run: |
ls -la /github/workspace
ls -la ${{ runner.temp }}/_github_workflow
- name: Debug build output
run: |
Expand Down

0 comments on commit d029c0d

Please sign in to comment.