Skip to content

Commit 1e23570

Browse files
committed
Release 0.2.9, generated from commit f984c9a
1 parent c831ef6 commit 1e23570

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ jobs:
9797
uses: actions/checkout@v2
9898
with:
9999
fetch-depth: 0
100+
token: ${{ secrets.DRONE_USER_TOKEN }}
100101

101102
- name: Check if tag already exists
102103
run: |
@@ -123,12 +124,12 @@ jobs:
123124
tag_name: v${{ env.package_version }}
124125
target_commitish: ${{ github.sha }}
125126
env:
126-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
127+
GITHUB_TOKEN: ${{ secrets.DRONE_USER_TOKEN }}
127128

128129
- name: 🚀 Tag Major Version
129130
if: ${{ env.create_release == 'yes' }}
130131
run: |
131-
git config user.name github-actions[bot]
132-
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
132+
git config user.name rohit-drone
133+
git config user.email 53574087+rohit-drone@users.noreply.github.com
133134
git tag -fa v${{ env.major_version }} -m "Update v${{ env.major_version }} tag"
134135
git push origin v${{ env.major_version }} --force

.gitlab-ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ image: node:12
44

55
workflow:
66
rules:
7-
- if: $CI_COMMIT_TAG
7+
- if: '$CI_COMMIT_TAG != null'
8+
9+
empty:
10+
script:
11+
- echo "test"
812

913
jira-integration-on-success:
1014
stage: .post

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.8",
3+
"version": "0.2.9",
44
"private": true,
55
"description": "TypeScript template action",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)