File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ ADD . /app
3
3
WORKDIR /app
4
4
5
5
# We are installing a dependency here directly into our app source dir
6
- RUN pip install --target=/app pygithub==1.54.1 jira
6
+ RUN pip install --target=/app pygithub==1.54.1 jira github-action-utils==1.1.0
7
7
8
8
# A distroless container image with Python and some basics like SSL certificates
9
9
# https://github.com/GoogleContainerTools/distroless
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ outputs:
18
18
description : " Changelog output"
19
19
runs :
20
20
using : " docker"
21
- image : " docker://ghcr.io/ibexa/changelog-generator-action:v2.0.2 "
21
+ image : " docker://ghcr.io/ibexa/changelog-generator-action:v2.0.3 "
Original file line number Diff line number Diff line change 4
4
5
5
from github import Github , UnknownObjectException
6
6
from jira import JIRA , JIRAError
7
+ from github_action_utils import set_output
7
8
8
9
JIRA_SERVER = "https://issues.ibexa.co"
9
10
JIRA_PREFIX = f"{ JIRA_SERVER } /browse/"
@@ -157,7 +158,7 @@ def main():
157
158
if bare_output :
158
159
print (messages )
159
160
else :
160
- print ( f"::set-output name= changelog:: { prepare_output (messages )} " )
161
+ set_output ( " changelog" , prepare_output (messages ))
161
162
162
163
163
164
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments