GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates a specific release asset link in a GitLab project. It is useful for managing release assets by modifying existing links associated with a release tag. For example, you can update the URL or name of a release asset link for a project release in GitLab.

Use Case Examples

  1. Updating the URL of a release asset link for a specific project release tag.
  2. Modifying the name or description of a release asset link in a GitLab release.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
baseUrl The base URL of the GitLab instance, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET but can be set to PUT for this operation.
Path Parameters Parameters required in the request path to identify the project, release tag, and link ID to update.

Output

JSON

  • id - The ID of the updated release asset link.
  • name - The name of the updated release asset link.
  • url - The URL of the updated release asset link.
  • link_type - The type of the link (e.g., 'other').
  • direct_asset_url - Direct URL to the asset if available.
  • filepath - File path of the asset if applicable.

Dependencies

  • GitLab API authentication token

Troubleshooting

  • Ensure the project ID, release tag, and link ID are correctly specified and exist in the GitLab project.
  • Verify that the authentication token has sufficient permissions to update release asset links.
  • Check that the request body schema matches the expected format for updating a release asset link.

Links

Discussion