Skip to content

Commit

Permalink
Release 0.2.5, generated from commit dfecf9c
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-drone committed Jun 28, 2021
1 parent d5fda8d commit 06d899b
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
cp README.md release/
cp LICENSE release/
# Add executable
cp jira-integration release/
# Add executables
cp -r bin release
# Copy release dockerfile as main dockerfile
cp Dockerfile.release release/Dockerfile
Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM node:12-alpine

WORKDIR /usr/jira-ci-cd-integration
WORKDIR /usr/local/jira-ci-cd-integration

# Bundle app source
COPY . .

CMD ["node", "/usr/jira-ci-cd-integration/dist/docker/index.js"]
ENV PATH=/usr/local/jira-ci-cd-integration/bin:$PATH

CMD ["node", "/usr/local/jira-ci-cd-integration/dist/docker/index.js"]
5 changes: 5 additions & 0 deletions bin/jira-integration
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

set -e

node ../dist/docker/index.js
4 changes: 2 additions & 2 deletions dist/docker/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/docker/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jira-ci-cd-integration",
"version": "0.2.4",
"version": "0.2.5",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
Expand Down

0 comments on commit 06d899b

Please sign in to comment.