14 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
a18c5d5598 Back to appleboy for push
All checks were successful
continuous-integration/drone Build is passing
2021-04-07 19:12:15 +02:00
be482ff6f1 Added upstream
Some checks failed
continuous-integration/drone Build is failing
2021-04-07 18:48:21 +02:00
103f9eb436 Added manual push
Some checks failed
continuous-integration/drone Build is failing
2021-04-07 18:47:39 +02:00
6d5bcf2802 Removed pushes
All checks were successful
continuous-integration/drone Build is passing
2021-04-07 18:47:16 +02:00
4a419d2862 Revert "Pushing manually again"
This reverts commit b5553936b0.
2021-04-07 18:46:46 +02:00
b5553936b0 Pushing manually again
ref #1
2021-04-07 18:44:21 +02:00
3f7d33af91 🚀New package version 0.0.5 [CI SKIP] 2021-04-07 16:35:09 +00:00
03a9810f48 Merge branch 'main' of git.odit.services:lfk/scanclient-electron into main
All checks were successful
continuous-integration/drone Build is passing
# Conflicts:
#	.drone.yml
2021-04-07 18:33:07 +02:00
fed8eb939b Now explicitly pushing tags
ref #1
2021-04-07 18:32:48 +02:00
2 changed files with 20 additions and 14 deletions

View File

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

View File

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