5 Commits

Author SHA1 Message Date
6d5813baa9 🚀New package version 0.1.6 [CI SKIP] 2021-04-13 17:00:10 +00:00
165e36a166 Pinned branch to main
All checks were successful
continuous-integration/drone Build is passing
2021-04-13 18:59:32 +02:00
d6b4a1776c Workaround for git push issue
Some checks reported errors
continuous-integration/drone Build was killed
ref #1
2021-04-13 18:51:21 +02:00
bee8c9df96 Added release title
Some checks failed
continuous-integration/drone Build is failing
2021-04-07 19:15:57 +02:00
8189fd9c0e Added tag to ignore list 2021-04-07 19:15:40 +02:00
2 changed files with 17 additions and 4 deletions

View File

@@ -31,6 +31,7 @@ steps:
depends_on: ["run electron packager"]
image: plugins/gitea-release
settings:
title: Release ${DRONE_TAG}
api_key:
from_secret: gitea_token
base_url: https://git.odit.services
@@ -56,11 +57,21 @@ steps:
image: node:alpine
commands:
- npm --no-git-tag-version version ${SOURCE_TAG}
- name: commit & tag
- name: push new version to repo
image: appleboy/drone-git-push
settings:
commit: true
commit_message: 🚀New package version ${SOURCE_TAG} [CI SKIP]
author_email: bot@odit.services
followtags: false
branch: main
remote: git@git.odit.services:lfk/scanclient-electron.git
skip_verify: true
ssh_key:
from_secret: git_ssh
- name: tag
image: alpine/git
commands:
- git add .
- git commit -m "🚀New package version ${SOURCE_TAG} [CI SKIP]"
- git tag ${SOURCE_TAG} -a -m "Release ${SOURCE_TAG}"
- name: push to repo
image: appleboy/drone-git-push
@@ -68,6 +79,7 @@ steps:
commit: false
author_email: bot@odit.services
followtags: true
branch: main
remote: git@git.odit.services:lfk/scanclient-electron.git
skip_verify: true
ssh_key:
@@ -76,5 +88,6 @@ trigger:
event:
exclude:
- push
- tag
include:
- custom

View File

@@ -1,6 +1,6 @@
{
"name": "@lfk/scanclient-electron",
"version": "0.0.5",
"version": "0.1.6",
"description": "minimal electron application",
"main": "main.js",
"scripts": {