Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unpicking directories #331

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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