-
Notifications
You must be signed in to change notification settings - Fork 6
Add a workflow to release new package #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces a GitHub Actions workflow for automated package releases. The workflow allows manual triggering with an optional release tag parameter and sets up the necessary infrastructure for publishing Docker images.
- Adds manual release workflow with configurable release tag input
- Configures Docker registry authentication using GitHub Container Registry
- Integrates Python-based release tooling for Docker image publishing
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is quite an old version, isn't it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not that old... According to https://github.com/GitHubSecurityLab/seclab-taskflow-agent?tab=readme-ov-file#requirements the agent requires >= 3.9 version. So maybe we should change it to the lowest supported version?
|
@JarLob: do you know if ghcr supports some kind of trusted publishing? |
No description provided.