Commit Graph

5 Commits

Author SHA1 Message Date
80d0464a50 fix: use the correct weld release file pattern 2025-12-20 18:11:02 +03:00
d052055aa0 feat(action): add required token input for authentication
Introduces a new required 'token' input to the action. This token will be used for all GitHub API interactions, ensuring clear and explicit authentication, especially when accessing private repositories or repositories outside the current workflow's scope.

This change replaces the previous 'github-token' and 'weld-repo-token' inputs with a single, mandatory 'token' input, making the action's authentication requirements unambiguous.
2025-12-20 17:01:07 +03:00
d78a286676 fix(action): explicitly resolve 'latest' version tag
The previous logic for detecting the 'latest' weld version relied on 'gh release download' interpreting an empty tag argument as the latest release. This was causing issues in consumer workflows, as it was seemingly looking for a literal 'latest' tag.

This commit updates the 'Get Version Tag for Download' step to explicitly query the GitHub API for the actual tag name of the latest release when 'weld-version' is set to 'latest'. This ensures a concrete tag is always provided to the download command, making the action more robust.
2025-12-20 16:00:49 +03:00
877d03fffc fix(action): correct invalid YAML syntax
The action.yml file had multiple syntax errors, including incorrect indentation and misplaced keys. This caused the action to fail during workflow parsing.

This commit corrects the YAML structure to be valid, ensuring the action can be loaded correctly.
2025-12-20 15:48:41 +03:00
717c267d0e feat: initial setup of github action and semantic release 2025-12-16 20:38:45 +03:00