Skip to content

Commit

Permalink
Update... one more time build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Harze2k authored May 5, 2024
1 parent 00fafa9 commit d438579
Showing 1 changed file with 10 additions and 21 deletions.
31 changes: 10 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,32 +95,21 @@ jobs:
run: |
cat ./build/meson-logs/testlog.txt
- name: Move artifacts to MPVBuilds directory
- name: Setup Artifact Directory
run: |
mkdir -p $HOME/MPVBuilds # Make sure this directory is correctly recognized
cp -r /d/a/mpv/mpv/build/* $HOME/MPVBuilds/ || true
mkdir -p ~/MPVBuilds # Make sure this directory is correctly recognized
cp -r /d/a/mpv/mpv/build/* ~/MPVBuilds/ || true
shell: msys2 {0}
mkdir -p ${{ github.workspace }}/MPVBuilds
cp -r /d/a/mpv/mpv/build/* ${{ github.workspace }}/MPVBuilds/ || true
- name: Debug Info
run: |
echo "Listing $HOME/MPVBuilds contents:"
ls -la $HOME/MPVBuilds || true
echo "Listing ~/MPVBuilds contents:"
ls -la ~/MPVBuilds || true
shell: msys2 {0}
echo "Listing contents of MPVBuilds directory:"
ls -la ${{ github.workspace }}/MPVBuilds/ || true
- uses: actions/upload-artifact@v4
with:
name: mpv-${{ matrix.sys }}-home
path: $HOME/MPVBuilds/
if-no-files-found: warn
overwrite: true

- uses: actions/upload-artifact@v4
- name: Upload MPVBuilds Directory
uses: actions/upload-artifact@v4
with:
name: mpv-${{ matrix.sys }}-tilde
path: ~/MPVBuilds/
name: mpv-${{ matrix.sys }}
path: ${{ github.workspace }}/MPVBuilds/**/*
if-no-files-found: warn
overwrite: true

0 comments on commit d438579

Please sign in to comment.