We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22b13d3 commit 1c10eadCopy full SHA for 1c10ead
.github/workflows/api.yml
@@ -16,11 +16,13 @@ jobs:
16
- uses: actions/setup-python@v4
17
with:
18
python-version: ${{ matrix.python_version }}
19
+ - name: rename the file
20
+ run: mv 1.txt ${{ matrix.python_version }}-1.txt
21
- name: do the thing
22
uses: actions/upload-artifact@v4
23
- name: do_the_thing-${{ matrix.python_version }}.txt
- path: 1.txt
24
+ name: do_the_thing-${{ matrix.python_version }}
25
+ path: ${{ matrix.python_version }}-1.txt
26
27
later:
28
needs: [build]
0 commit comments