Skip to content

Commit 2032460

Browse files
Merge pull request #44 from technote-space/release/next-v1.2.0
feat: release v1.2.1
2 parents d043b20 + f86b251 commit 2032460

File tree

3 files changed

+30
-22
lines changed

3 files changed

+30
-22
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@technote-space/release-github-actions-cli",
3-
"version": "1.1.0",
3+
"version": "1.3.0",
44
"description": "Release GitHub Actions Cli",
55
"author": {
66
"name": "Technote",
@@ -38,8 +38,8 @@
3838
"devDependencies": {
3939
"@commitlint/cli": "^8.3.5",
4040
"@commitlint/config-conventional": "^8.3.4",
41-
"@technote-space/github-action-helper": "^1.2.1",
42-
"@technote-space/github-action-test-helper": "^0.2.4",
41+
"@technote-space/github-action-helper": "^1.2.2",
42+
"@technote-space/github-action-test-helper": "^0.2.5",
4343
"@types/jest": "^25.1.3",
4444
"@types/node": "^13.7.7",
4545
"@typescript-eslint/eslint-plugin": "^2.21.0",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const execute = async(): Promise<void> => {
2222

2323
const config = getConfig(commander.package);
2424
const args = getContextArgs(commander.tag, commander.branch, config);
25-
setEnv(config, commander.token, commander.workspace);
25+
setEnv(config, token, commander.workspace);
2626
if (!isValidContext(args)) {
2727
console.log('This is not target tag');
2828
return;

yarn.lock

Lines changed: 26 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -604,27 +604,27 @@
604604
type-detect "4.0.8"
605605

606606
"@technote-space/filter-github-action@^0.2.4":
607-
version "0.2.4"
608-
resolved "https://registry.yarnpkg.com/@technote-space/filter-github-action/-/filter-github-action-0.2.4.tgz#927f147c4b3ca0afa6af49875687c7d51d2e336d"
609-
integrity sha512-/EK6LVXUr0w91bFIiIcYrG2KTxeOd8V58P+5IWstFArp6Svf5I1uOtPmZmvt4pOfTQtRiSVRNnVQZmGe5Lu8Pw==
607+
version "0.2.5"
608+
resolved "https://registry.yarnpkg.com/@technote-space/filter-github-action/-/filter-github-action-0.2.5.tgz#53aea7cf9026bb86cb89ad2053197d07336e9c86"
609+
integrity sha512-+hKxXMVdmkB0tTVZLvUwwLLHYiweD8DJZUuPjjrmXJgu6HC6j349gywYCSBmBjoFAlGip+vhbpKnWBNDV2ht+g==
610610
dependencies:
611611
"@actions/core" "^1.2.2"
612612
"@actions/github" "^2.1.1"
613613

614-
"@technote-space/github-action-helper@^1.2.0", "@technote-space/github-action-helper@^1.2.1":
615-
version "1.2.1"
616-
resolved "https://registry.yarnpkg.com/@technote-space/github-action-helper/-/github-action-helper-1.2.1.tgz#16cdf2c68b693c4f3a29ea4f7100b9ce54475a0f"
617-
integrity sha512-1mdkIyekaBTBsPLkCVW8utZLRDHUcQguhrqixzTtXWGgLsA7pELjABAr2jQ42Z6Ww9VvsnjaoVBwzgD0/XWPxg==
614+
"@technote-space/github-action-helper@^1.2.0", "@technote-space/github-action-helper@^1.2.2":
615+
version "1.2.2"
616+
resolved "https://registry.yarnpkg.com/@technote-space/github-action-helper/-/github-action-helper-1.2.2.tgz#59b7df8e33b76b85318b5ed31b43f60ccb92493f"
617+
integrity sha512-19qwKzHKbfRGy8avyYi3x/ekvLoWvE3Qv2bUf6kQDQDPS2/WRW2p9lCUtSjEecZ3Sa65t/cTcgjYuMUWwOtc8g==
618618
dependencies:
619619
"@actions/core" "^1.2.2"
620620
"@actions/github" "^2.1.1"
621621
shell-escape "^0.2.0"
622622
sprintf-js "^1.1.2"
623623

624-
"@technote-space/github-action-test-helper@^0.2.4":
625-
version "0.2.4"
626-
resolved "https://registry.yarnpkg.com/@technote-space/github-action-test-helper/-/github-action-test-helper-0.2.4.tgz#9ff122c173caed66d7d1a7c98136f397e876e5de"
627-
integrity sha512-yU+KbfZ8+nn6uwMK0TN8W+PoyM2zS8x0lYABVS+077wqLubLIs5PQyFRggNOZPVg51aRWFI1if87VG7QBuan8Q==
624+
"@technote-space/github-action-test-helper@^0.2.5":
625+
version "0.2.5"
626+
resolved "https://registry.yarnpkg.com/@technote-space/github-action-test-helper/-/github-action-test-helper-0.2.5.tgz#86529a9c9478eb19dfcdcef02da1760df029c5cc"
627+
integrity sha512-AU0WBHoBNMrSX0vKnCBeNQ2+sdOGHEs2O8IqYVocITsqe3tCwpcYRaubulXfP6tpgW+0SOtMyjgvL9DEyDDFhA==
628628
dependencies:
629629
"@actions/github" "^2.1.1"
630630
js-yaml "^3.13.1"
@@ -2283,9 +2283,9 @@ has@^1.0.3:
22832283
function-bind "^1.1.1"
22842284

22852285
hosted-git-info@^2.1.4:
2286-
version "2.8.7"
2287-
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.7.tgz#4d2e0d5248e1cfabc984b0f6a6d75fe36e679511"
2288-
integrity sha512-ChkjQtKJ3GI6SsI4O5jwr8q8EPrWCnxuc4Tbx+vRI5x6mDOpjKKltNo1lRlszw3xwgTOSns1ZRBiMmmwpcvLxg==
2286+
version "2.8.8"
2287+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
2288+
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
22892289

22902290
html-encoding-sniffer@^1.0.2:
22912291
version "1.0.2"
@@ -5286,10 +5286,18 @@ yargs-parser@^16.1.0:
52865286
camelcase "^5.0.0"
52875287
decamelize "^1.2.0"
52885288

5289+
yargs-parser@^17.1.0:
5290+
version "17.1.0"
5291+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-17.1.0.tgz#b95ff3201e98b89e86070f92bef636016a0b0766"
5292+
integrity sha512-67zLl4/kWtp9eyVuxX+fHZ2Ey4ySWh0awDJlk/EtT0vzspsXbzrFsh76WjYSP3L++zhSwHQRUE3MCBe754RuEg==
5293+
dependencies:
5294+
camelcase "^5.0.0"
5295+
decamelize "^1.2.0"
5296+
52895297
yargs@^15.0.0:
5290-
version "15.1.0"
5291-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.1.0.tgz#e111381f5830e863a89550bd4b136bb6a5f37219"
5292-
integrity sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg==
5298+
version "15.2.0"
5299+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.2.0.tgz#cb9fc7f7ec429f7e9329b623f5c707a62dae506a"
5300+
integrity sha512-E+o8C37U+M7N15rBJVxr0MoInp+O7XNhMqveSGWA5uhddqs8qtkZ+uvT9FI32QML0SKidXdDONr40Xe3tDO9FA==
52935301
dependencies:
52945302
cliui "^6.0.0"
52955303
decamelize "^1.2.0"
@@ -5301,4 +5309,4 @@ yargs@^15.0.0:
53015309
string-width "^4.2.0"
53025310
which-module "^2.0.0"
53035311
y18n "^4.0.0"
5304-
yargs-parser "^16.1.0"
5312+
yargs-parser "^17.1.0"

0 commit comments

Comments
 (0)