Skip to content

Commit 87f1deb

Browse files
committed
Simplify artifact names in build.yaml by removing reference prefix
1 parent fa1516b commit 87f1deb

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,51 +45,51 @@ jobs:
4545
continue-on-error: true
4646
- uses: actions/upload-artifact@master
4747
with:
48-
name: ${{ github.event.inputs.reference }}-pdf-logs.zip
48+
name: pdf-logs.zip
4949
path: ./Doc/build/latex/*.log
5050
- uses: actions/upload-artifact@master
5151
with:
52-
name: ${{ github.event.inputs.reference }}-docs-pdf-a4.zip
52+
name: docs-pdf-a4.zip
5353
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-pdf-a4.zip
5454
if-no-files-found: ignore
5555
- uses: actions/upload-artifact@master
5656
with:
57-
name: ${{ github.event.inputs.reference }}-docs-pdf-a4.tar.bz2
57+
name: docs-pdf-a4.tar.bz2
5858
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-pdf-a4.tar.bz2
5959
if-no-files-found: ignore
6060
- uses: actions/upload-artifact@master
6161
with:
62-
name: ${{ github.event.inputs.reference }}-docs-html.zip
62+
name: docs-html.zip
6363
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-html.zip
6464
if-no-files-found: ignore
6565
- uses: actions/upload-artifact@master
6666
with:
67-
name: ${{ github.event.inputs.reference }}-docs-html.tar.bz2
67+
name: docs-html.tar.bz2
6868
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-html.tar.bz2
6969
if-no-files-found: ignore
7070
- uses: actions/upload-artifact@master
7171
with:
72-
name: ${{ github.event.inputs.reference }}-docs-text.zip
72+
name: docs-text.zip
7373
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-text.zip
7474
if-no-files-found: ignore
7575
- uses: actions/upload-artifact@master
7676
with:
77-
name: ${{ github.event.inputs.reference }}-docs-text.tar.bz2
77+
name: docs-text.tar.bz2
7878
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-text.tar.bz2
7979
if-no-files-found: ignore
8080
- uses: actions/upload-artifact@master
8181
with:
82-
name: ${{ github.event.inputs.reference }}-docs-texinfo.zip
82+
name: docs-texinfo.zip
8383
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-texinfo.zip
8484
if-no-files-found: ignore
8585
- uses: actions/upload-artifact@master
8686
with:
87-
name: ${{ github.event.inputs.reference }}-docs-texinfo.tar.bz2
87+
name: docs-texinfo.tar.bz2
8888
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs-texinfo.tar.bz2
8989
if-no-files-found: ignore
9090
- uses: actions/upload-artifact@master
9191
with:
92-
name: ${{ github.event.inputs.reference }}-docs.epub
92+
name: docs.epub
9393
path: ./Doc/dist/python-${{ github.event.inputs.reference }}-docs.epub
9494
if-no-files-found: ignore
9595
- name: Checkout gh-pages branch

0 commit comments

Comments
 (0)