Skip to content

Commit

Permalink
Merge pull request #331 from alphagov/Unpicking-my-directories
Browse files Browse the repository at this point in the history
Unpicking directories
  • Loading branch information
annecremin authored Feb 7, 2025
2 parents 90c5fa7 + 92eff51 commit e4581f0
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,17 @@ jobs:
path: ${{ github.workspace }}/build
retention-days: 1

- name: Debug Upload
- name: Verify upload
if: always()
run: |
echo "Upload step result: ${{ steps.upload.outcome }}"
echo "Upload step conclusion: ${{ steps.upload.conclusion }}"
echo "Upload step outputs:"
echo "Checking artifact directory structure:"
find ${{ runner.temp }} -type f -ls
echo "Checking specific artifact path:"
find ${{ runner.temp }} -name "artifact.tar" -type f -ls
- name: Check artifact
run: |
echo "Artifact path verification:"
Expand Down Expand Up @@ -125,13 +130,13 @@ jobs:
steps:
- name: List Available Artifacts
run: |
pwd
ls -la
echo "Listing all available artifacts:"
ls -la ${{ runner.temp }}
echo "Checking _github_workflow directory:"
ls -la ${{ runner.temp }}/_github_workflow || echo "Directory not found"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
with:
artifact_name: github-pages
uses: actions/deploy-pages@v3

0 comments on commit e4581f0

Please sign in to comment.