logo

upload-artifact

namespace-actions/upload-artifact stores artifact archives to Namespace high-performance storage. This action is 100% compatible with GitHub's actions/upload-artifact.

To download artifacts from Namespace, use namespace-actions/download-artifact.

Prerequisites

This action only works with Namespace GitHub Runners, if you haven't yet migrated your workflows to Namespace runners, checkout the runner documentation first.

Example

jobs:
  deploy:
    name: Demo Upload Archive
    runs-on: namespace-profile-default
    steps:
      - name: Upload Archive
        uses: namespace-actions/upload-artifact@v0
        with:
          name: test-archive
          path: ./archive

Options

name

Name of the artifact to upload.

Optional. Default is artifact.

path

A file, directory or wildcard pattern that describes what to upload.

Required.

if-no-files-found

The desired behavior if no files are found using the provided path.

Available options:

  • warn: Output a warning but do not fail the action
  • error: Fail the action with an error message
  • ignore: Do not output any warnings or errors, the action does not fail

Optional. Default is warn.

retention-days

This input is ignored. All artifacts are retained in Namespace storage for 30 days.

Optional.

compression-level

The level of compression for Zlib to be applied to the artifact archive. The value can range from 0 to 9. For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads.

Optional. Default is 6.

overwrite

If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist.

Optional. Default is false

Outputs

artifact-id

Namespace artifact ID that identifies the artifact within your workspace.

artifact-url

(Coming soon) URL of where the artifact can be downloaded.