Skip to content

Commit

Permalink
Merge pull request #301 from amontoison/yml
Browse files Browse the repository at this point in the history
Update Breakage.yml
  • Loading branch information
ocots authored Sep 15, 2024
2 parents 285afa2 + e8af449 commit e9b7968
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/Breakage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
end;
end'
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: pr
path: pr/
Expand All @@ -99,17 +99,19 @@ jobs:
needs: break
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: pr
path: pr/

- run: ls
- run: |
cd pr
echo "| Package name | latest | stable |" > MSG
echo "Breakage test results" > MSG
echo "Date: $(date '+%Y-%m-%d %H:%M:%S')" >> MSG
echo "| Package name | latest | stable |" >> MSG
echo "|--|--|--|" >> MSG
count=0
for file in *
Expand All @@ -132,7 +134,7 @@ jobs:
fi
done >> MSG
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: pr
path: pr/

0 comments on commit e9b7968

Please sign in to comment.