Skip to content

Commit

Permalink
version 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Wandalen committed Sep 8, 2021
1 parent d308200 commit 0a84968
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 85 deletions.
55 changes: 24 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
{
"name": "wretry.action",
"version": "0.2.2",
"description": "Retries an Github Action step on failure",
"main": "src/Main.js",
"scripts": {
"test": "wtest .run \"test/**\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmvict/wretry.action"
},
"keywords": [
"action",
"retry",
"github",
"workflow"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmvict/wretry.action/issues"
},
"homepage": "https://github.com/dmvict/wretry.action#action::wretry.action",
"dependencies": {
"@actions/core": "^1.1.0",
"wgittools": "latest"
},
"devDependencies": {
"wTesting": "latest"
}
}
"name" : "wretry.action",
"version" : "0.2.3",
"description" : "Retries an Github Action step on failure",
"enabled" : 1,
"author" : "Kostiantyn Wandalen <[email protected]>",
"contributors" :
[
"Kostiantyn Wandalen <[email protected]>",
"Dmytro Kryvoruchko <[email protected]>"
],
"license" : "MIT",
"scripts" : { "test" : "wtest .run \"test/**\"" },
"homepage" : "https://github.com/Wandalen/wretry.action#action::wretry.action",
"keywords" : [ "action", "retry", "github", "workflow" ],
"npm.engines" : { "node" : ">= 10.0.0" },
"engine" : "node >= 10.0.0",
"repository" : "https://github.com/Wandalen/wretry.action",
"bugs" : "https://github.com/Wandalen/wretry.action/issues",
"main" : "src/Main.js",
"proto.entry" : [ "src/Main.js" ],
"dependencies" : { "@actions/core" : "^1.4.0", "wgittools" : "" },
"devDependencies" : { "wTesting" : "" },
"files" : [ "src/Common.js", "src/Main.js", "src/Post.js", "src/Pre.js", "src/Retry.js", "src/Runner.js" ]
}
75 changes: 21 additions & 54 deletions will.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
about:
name: wretry.action
version: 0.2.2
version: 0.2.3
description: Retries an Github Action step on failure
enabled: 1
author: Kostiantyn Wandalen <[email protected]>
Expand Down Expand Up @@ -237,13 +237,13 @@ step:
content: prime
debug: release
bump.minor:
criterion :
semantic : minor
versionDelta: '0.1.0'
criterion:
semantic: minor
versionDelta: 0.1.0
bump.patch:
criterion :
semantic : patch
versionDelta: '0.0.1'
criterion:
semantic: patch
versionDelta: 0.0.1
sync:
inherit: git.sync
dirPath: .
Expand All @@ -252,7 +252,7 @@ step:
command: add .
commit:
inherit: git
command: commit -am "version {about::version}"
command: 'commit -am "version {about::version}"'
tag.version:
inherit: git.tag
tag.name: 'v{about::version}'
Expand All @@ -267,10 +267,10 @@ step:
tag: '{about::version}'
build:
action.release.patch:
criterion :
publish : 1
default : 1
semantic : patch
criterion:
publish: 1
default: 1
semantic: patch
steps:
- sync
- bump.*=1
Expand All @@ -282,9 +282,9 @@ build:
- push
- release
action.release.minor:
criterion :
publish : 1
semantic : minor
criterion:
publish: 1
semantic: minor
steps:
- sync
- bump.*=1
Expand Down Expand Up @@ -316,32 +316,6 @@ build:
steps:
- 'step::clean.out*=2'
- reflect.proto.*=1
# compiled.debug:
# criterion:
# debug: debug
# raw: compiled
# content: prime
# steps:
# - 'step::clean.out*=2'
# - transpile.proto.no.tests*=1
# - transpile.proto.only.tests*=1
# raw.release:
# criterion:
# debug: release
# raw: raw
# content: prime
# steps:
# - 'step::clean.out*=2'
# - transpile.proto.raw
# release:
# criterion:
# debug: release
# raw: compiled
# content: prime
# steps:
# - 'step::clean.out*=2'
# - transpile.proto.no.tests*=1
# - transpile.proto.only.tests*=1
npm:
criterion:
debug:
Expand All @@ -350,26 +324,19 @@ build:
raw:
- raw
- compiled
content : prime
content: prime
steps:
- npm.generate.*=1
npm.proto:
criterion:
content: proto
steps:
- npm.generate.proto
all: # should be replaced by full version
criterion :
content : prime
debug : debug
raw : raw
all:
criterion:
content: prime
debug: debug
raw: raw
steps:
- 'build::debug'
- 'build::npm.*=1'
# all:
# steps:
# - 'build::debug'
# - 'build::compiled.debug'
# - 'build::raw.release'
# - 'build::release'
# - 'build::npm.*=5'

0 comments on commit 0a84968

Please sign in to comment.