Closed
Description
Description
According to github documentation artifacts sharing the same name should be overwritten.
Gitea seems to discard/ignore the second upload. Here is an example workflow:
name: Uploads
on:
- push
jobs:
first:
name: upload first
runs-on: windows
steps:
- run: echo "first" > actual
- uses: actions/upload-artifact@v3
with:
name: actual
path: actual
second:
needs: [first]
name: upload second
runs-on: windows
steps:
- run: echo "second" > actual
- uses: actions/upload-artifact@v3
with:
name: actual
path: actual
verify:
needs: [second]
name: Verify contents
runs-on: windows
steps:
- name: Fetch Integration Tests from Build
uses: actions/download-artifact@v3
with:
name: actual
- run: echo "second" > expected
- run: fc.exe expected actual
Gitea Version
1.21.2
Can you reproduce the bug on the Gitea demo site?
No
Log Gist
No response
Screenshots
Git Version
No response
Operating System
No response
How are you running Gitea?
gitea/gitea:latest
Database
MySQL/MariaDB