main
upload-artifact-gitea
A Gitea-compatible vendored copy of actions/upload-artifact@v7.0.1.
The bundled dist/upload/index.js includes two Gitea patches:
isGhes()returnsfalse. Gitea setsGITHUB_SERVER_URLto the Gitea instance URL, which upstreamactions/upload-artifact@v7mis-detects as GitHub Enterprise Server and rejects before it can use Gitea's artifact runtime service.archive: falseaccepts multiple matched files. Upstream v7 only permits one unarchived file; this fork uploads every matched file as a separate unarchived artifact named after that file's basename.
Usage
- uses: https://git.neosisyphus.com/mo7sen/upload-artifact-gitea@v7
with:
path: |
build/meson-logs/meson-log.txt
build/meson-logs/testlog.txt
archive: false
With archive: false, each matched file is uploaded unzipped as its own
artifact. The artifact name is the file basename, so name is ignored in this
mode.
Upstream
Based on https://github.com/actions/upload-artifact/releases/tag/v7.0.1.
Languages
Markdown
100%