We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88056d2 commit cef7963Copy full SHA for cef7963
.github/workflows/fix-outdated-tools.yml
@@ -50,14 +50,20 @@ jobs:
50
- name: Fix ${{ matrix.lockfile }}
51
run: python scripts/fix_outdated.py "${{ matrix.lockfile }}"
52
53
+ - name: Get base name
54
+ id: basename
55
+ run: echo "name=${LOCKFILE%.yaml.lock}" >> $GITHUB_OUTPUT
56
+ env:
57
+ LOCKFILE: ${{ matrix.lockfile }}
58
+
59
- name: Upload changes
60
uses: actions/upload-artifact@v4
61
if: always()
62
with:
63
name: ${{ matrix.lockfile }}
64
path: |
65
${{ matrix.lockfile }}
- not-installable-revisions/*.not-installable-revisions.yaml
66
+ not-installable-revisions/${{ steps.basename.outputs.name }}.not-installable-revisions.yaml
67
if-no-files-found: ignore
68
69
create-pr:
0 commit comments