Skip to content

Commit

Permalink
v3
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Sep 16, 2024
1 parent 65c1bd9 commit eae7788
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/pkg-create/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:

- name: Upload 📤 to the share store
if: ${{ inputs.artifact-name != '' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifact-name }}
path: pypi
2 changes: 1 addition & 1 deletion .github/actions/unittesting/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ runs:
shell: ${{ inputs.shell-type }}

- name: Upload pytest results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: ${{ steps.location.outputs.artifact }}
path: "test/${{ steps.location.outputs.artifact }}.xml"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
if: startsWith(github.event_name, 'pull_request')
run: echo "KEEP_DAYS=7" >> $GITHUB_ENV
- name: Upload built docs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: docs-${{ matrix.target }}-${{ github.sha }}
path: ${{ inputs.docs-dir }}/build/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
submodules: recursive
- run: mkdir dist && touch dist/.placeholder
- name: Upload 📤
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifact-name }}
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Create 📦 package
uses: ./.github/actions/pkg-create
- name: Upload 📤 to the share store
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: pypi-packages-${{ github.sha }}
path: dist
Expand Down

0 comments on commit eae7788

Please sign in to comment.