1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
---
name: Bug Report
about: Something isn't working as expected
labels:
- bug
- triage
---
## Bug Report
### Description
<!-- A description of what you were trying to do -->
### Expected behavior
<!-- A short description of what you expected to happen. -->
### Actual behavior
<!-- A short description of what actually happened. -->
### Environment
- **Operating System (w/ version):** <!-- Windows 11, Debian Bookworm, etc. -->
- **Python version:** <!-- x.x.x -->
- **Pip version:** <!-- x.x.x -->
- **Semantic-release version:** <!-- x.x.x -->
- **Build tool (w/ version):** <!-- build x.x.x, poetry x.x.x, etc. -->
<!-- Please provide the output of the following commands -->
<details>
<summary><code>pip freeze</code></summary>
```log
```
</details>
<br>
<!-- If you have a problem with version determination, we need a snapshot
of the git log prior to the version command. -->
<details>
<summary><code>git log --oneline --decorate --graph --all -n 50</code></summary>
```log
```
</details>
### Configuration
<details>
<summary>Semantic Release Configuration</summary>
```toml
```
</details>
<br>
<!-- If applicable to the issue, please provide the build-system configuration
from your pyproject.toml file. -->
<details>
<summary>Build System Configuration</summary>
```toml
```
</details>
<br>
<!--
If GitHub Actions is applicable to your issue, please provide your job definition.
-->
<details>
<summary>GitHub Actions Job Definition</summary>
```yaml
```
</details>
### Execution Log
<!--
Please rerun the command using with the `-vv` option and include the log here
If you are using GitHub Actions, include the log output from the job with the -vv flag
as a root_options argument.
-->
<details>
<summary><code>semantic-release -vv <i>command</i></code></summary>
```log
```
</details>
### Additional context
<!--
Feel free to add any other information that could be useful,
such as a link to your project (if public), links to a failing GitHub Action,
or an example commit.
-->
|