Skip to content

Commit

Permalink
FIX: upload to different artifact names (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer authored Jan 13, 2024
1 parent 5c3f49d commit 9b56d73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: pre-commit-changes
name: pre-commit-changes-taplo
path: ${{ steps.diff.outputs.diff }}

push:
Expand All @@ -151,8 +151,9 @@ jobs:
token: ${{ secrets.token || secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: pre-commit-changes
merge-multiple: true
path: .
pattern: pre-commit-changes*
- if: always()
name: Push changes
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
matrix: ${{ fromJSON(needs.create-matrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- uses: ComPWA/update-pip-constraints@main
- uses: ComPWA/update-pip-constraints@v1
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -62,6 +62,9 @@ jobs:
with:
token: ${{ secrets.token }}
- uses: actions/download-artifact@v4
with:
merge-multiple: true
path: artifact
- run: ls -A
- name: Move artifacts to correct location
run: |
Expand Down

0 comments on commit 9b56d73

Please sign in to comment.