Skip to content

Commit e1dcb5a

Browse files
committed
Release 0.2.10, generated from commit bfd8625
1 parent 1e23570 commit e1dcb5a

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,13 @@ jobs:
5252
- name: Set up QEMU
5353
if: ${{ env.create_release == 'yes' }}
5454
uses: docker/setup-qemu-action@v1
55+
5556
- name: Set up Docker Buildx
57+
id: buildx
5658
if: ${{ env.create_release == 'yes' }}
5759
uses: docker/setup-buildx-action@v1
60+
with:
61+
driver-opts: network=host
5862

5963
- name: 🛂 Log in to Docker Hub
6064
if: ${{ env.create_release == 'yes' }}
@@ -85,6 +89,7 @@ jobs:
8589
with:
8690
context: .
8791
platforms: linux/amd64,linux/arm64
92+
builder: ${{ steps.buildx.outputs.name }}
8893
push: true
8994
tags: ${{ steps.meta.outputs.tags }}
9095
labels: ${{ steps.meta.outputs.labels }}

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ COPY . .
99
COPY ./bin/jira-integration /usr/local/bin/jira-integration
1010

1111
CMD ["node", "/usr/local/jira-ci-cd-integration/dist/docker/index.js"]
12+
13+
LABEL maintainer="Rohit Gohri <[email protected]>"
14+
LABEL org.opencontainers.image.authors="Rohit Gohri <[email protected]>"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Generate new OAuth Credentials and copy
2323

2424
## Usage With Github Actions
2525

26-
[![test-release-workflow](https://github.com/rohit-gohri/jira-ci-cd-integration/actions/workflows/test-release.yml/badge.svg?event=push)](https://github.com/rohit-gohri/jira-ci-cd-integration/actions/workflows/test-release.yml)
26+
[![test-release workflow](https://github.com/rohit-gohri/jira-ci-cd-integration/actions/workflows/test-release.yml/badge.svg)](https://github.com/rohit-gohri/jira-ci-cd-integration/actions/workflows/test-release.yml)
2727

2828
### Add OAuth Creds as secrets to Github
2929

action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ inputs:
1616
description: 'ClientSecret of OAuth Creds'
1717
token:
1818
required: false
19+
default: ${{ github.token }}
1920
description: 'Github Token to get commit message in Pull Request Events'
2021
event_type:
2122
required: false

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira-ci-cd-integration",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"private": true,
55
"description": "TypeScript template action",
66
"main": "lib/main.js",
@@ -43,7 +43,7 @@
4343
"@types/env-ci": "^3.1.0",
4444
"@types/isomorphic-fetch": "0.0.35",
4545
"@types/jest": "^26.0.23",
46-
"@types/node": "^15.12.5",
46+
"@types/node": "^16.4.10",
4747
"@typescript-eslint/eslint-plugin": "^4.28.0",
4848
"@typescript-eslint/parser": "^4.28.0",
4949
"@vercel/ncc": "^0.28.6",
@@ -56,6 +56,6 @@
5656
"jest-circus": "^27.0.5",
5757
"prettier": "2.3.2",
5858
"ts-jest": "^27.0.3",
59-
"typescript": "^4.3.4"
59+
"typescript": "^4.3.5"
6060
}
6161
}

0 commit comments

Comments
 (0)