I used devcontainers/action@v1 in a workflow to publish and tag a feature release
At the end of the workflow job the message is
Warning: Failed to automatically add repo tag, manually tag with: 'git tag feature_base_1.0.0 ...
In the release package I see that it used its own versioning 1.0.0, 1.0, 1
How do I add my own action to control the version naming?
I checked options https://github.com/devcontainers/action/blob/main/action.yml and saw disable-repo-tagging. Do I need to disable that and provide an action to define the tag & version?
I used devcontainers/action@v1 in a workflow to publish and tag a feature release At the end of the workflow job the message is
In the release package I see that it used its own versioning
1.0.0
,1.0
,1
How do I add my own action to control the version naming? I checked options https://github.com/devcontainers/action/blob/main/action.yml and saw disable-repo-tagging. Do I need to disable that and provide an action to define the tag & version?thanks in advance