Skip to content

Commit 72d7e72

Browse files
committed
Release 0.2.3, generated from commit c430079
1 parent ee5e81d commit 72d7e72

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

.github/workflows/generate.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ jobs:
8181
cp LICENSE release/
8282
cp .gitignore release/
8383
84+
# Add executable
85+
cp jira-integration release/
8486
# Copy release dockerfile as main dockerfile
8587
cp Dockerfile.release release/Dockerfile
8688

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ WORKDIR /usr/jira-ci-cd-integration
55
# Bundle app source
66
COPY . .
77

8-
CMD ["node", "dist/docker/index.js"]
8+
CMD ["node", "/usr/jira-ci-cd-integration/dist/docker/index.js"]

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,10 @@ steps:
103103
```yaml
104104
jira-integration:
105105
image: registry.gitlab.com/rohit-gohri/jira-ci-cd-integration:v0
106+
script: jira-integration
106107
variables:
107108
BUILD_NAME: gitlab-pipeline
108-
JIRA_INSTANCE: companyname
109+
JIRA_INSTANCE: boringdownload
109110
```
110111

111112
## Options

jira-integration

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
node dist/docker/index.js

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira-ci-cd-integration",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"private": true,
55
"description": "TypeScript template action",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)