mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-08-29 21:18:27 +00:00
Compare commits
@@ -0,0 +1 @@
|
|||||||
|
* @crazy-max @caarlos0
|
||||||
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
patreon: crazymax
|
github: crazy-max
|
||||||
custom: https://www.paypal.me/crazyws
|
custom: https://www.paypal.me/crazyws
|
||||||
|
|||||||
@@ -1,16 +1,20 @@
|
|||||||
name: test
|
name: ci
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: master
|
branches:
|
||||||
|
- master
|
||||||
|
- releases/*
|
||||||
push:
|
push:
|
||||||
branches: master
|
branches:
|
||||||
tags:
|
- master
|
||||||
|
- releases/*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
ci:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
@@ -25,7 +29,9 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
-
|
-
|
||||||
name: Set up Go
|
name: Set up Go
|
||||||
uses: actions/setup-go@master
|
uses: actions/setup-go@v1
|
||||||
|
with:
|
||||||
|
go-version: 1.13.x
|
||||||
-
|
-
|
||||||
name: GoReleaser
|
name: GoReleaser
|
||||||
uses: ./
|
uses: ./
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
name: lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '.github/workflows/lint.yml'
|
||||||
|
- 'src/*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
# https://github.com/actions/checkout
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
-
|
||||||
|
# https://github.com/actions/setup-node
|
||||||
|
name: Set up Node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
-
|
||||||
|
name: Setup TS
|
||||||
|
run: npm install tslint typescript -g
|
||||||
|
-
|
||||||
|
name: Lint check
|
||||||
|
run: tslint './src/*.ts'
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
name: release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- '**'
|
||||||
|
tags:
|
||||||
|
- 'v*.*.*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
# https://github.com/actions/checkout
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
-
|
||||||
|
name: Prepare
|
||||||
|
id: prepare
|
||||||
|
run: |
|
||||||
|
TAG=${GITHUB_REF#refs/tags/}
|
||||||
|
MINOR=${TAG%.*}
|
||||||
|
MAJOR=${MINOR%.*}
|
||||||
|
echo ::set-output name=tag_name::${TAG}
|
||||||
|
echo ::set-output name=minor_tag::${MINOR}
|
||||||
|
echo ::set-output name=major_tag::${MAJOR}
|
||||||
|
echo ::set-output name=major_exists::$(git show-ref origin/releases/${MAJOR})
|
||||||
|
-
|
||||||
|
name: Set up Git
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
git config user.name "${GITHUB_ACTOR}"
|
||||||
|
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
||||||
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
||||||
|
-
|
||||||
|
name: Checkout releases/${{ steps.prepare.outputs.major_tag }} branch
|
||||||
|
run: |
|
||||||
|
git checkout -B releases/${{ steps.prepare.outputs.major_tag }}
|
||||||
|
if [ -n "${{ steps.prepare.outputs.major_exists }}" ]; then
|
||||||
|
git branch --set-upstream-to=origin/releases/${{ steps.prepare.outputs.major_tag }} releases/${{ steps.prepare.outputs.major_tag }}
|
||||||
|
fi
|
||||||
|
-
|
||||||
|
# https://github.com/actions/setup-node
|
||||||
|
name: Set up Node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
-
|
||||||
|
name: NPM production deps
|
||||||
|
run: |
|
||||||
|
rm -rf node_modules
|
||||||
|
sed -i '/node_modules/d' .gitignore
|
||||||
|
npm install --production
|
||||||
|
-
|
||||||
|
name: Commit and push changes
|
||||||
|
run: |
|
||||||
|
git add --all
|
||||||
|
git status --short -uno
|
||||||
|
git commit -m 'Release ${{ steps.prepare.outputs.tag_name }}'
|
||||||
|
git show --stat-count=10 HEAD
|
||||||
|
git push -f origin releases/${{ steps.prepare.outputs.major_tag }}
|
||||||
|
-
|
||||||
|
name: Update ${{ steps.prepare.outputs.minor_tag }} tag
|
||||||
|
run: |
|
||||||
|
git push origin :refs/tags/${{ steps.prepare.outputs.minor_tag }}
|
||||||
|
git tag -fa ${{ steps.prepare.outputs.minor_tag }} -m "Release ${{ steps.prepare.outputs.tag_name }}"
|
||||||
|
git push origin ${{ steps.prepare.outputs.minor_tag }}
|
||||||
|
-
|
||||||
|
name: Update ${{ steps.prepare.outputs.major_tag }} tag
|
||||||
|
run: |
|
||||||
|
git push origin :refs/tags/${{ steps.prepare.outputs.major_tag }}
|
||||||
|
git tag -fa ${{ steps.prepare.outputs.major_tag }} -m "Release ${{ steps.prepare.outputs.tag_name }}"
|
||||||
|
git push origin ${{ steps.prepare.outputs.major_tag }}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
name: test
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- releases/*
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- releases/*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
# https://github.com/actions/checkout
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
-
|
||||||
|
name: Install
|
||||||
|
run: npm ci
|
||||||
|
-
|
||||||
|
name: Build
|
||||||
|
run: npm run build
|
||||||
|
-
|
||||||
|
name: Test
|
||||||
|
run: npm run test
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
/.dev
|
/.dev
|
||||||
|
/dist
|
||||||
|
|
||||||
# Jetbrains
|
# Jetbrains
|
||||||
/.idea
|
/.idea
|
||||||
|
|||||||
+10
-10
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"printWidth": 80,
|
"printWidth": 120,
|
||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
"useTabs": false,
|
"useTabs": false,
|
||||||
"semi": true,
|
"semi": true,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "none",
|
"trailingComma": "none",
|
||||||
"bracketSpacing": false,
|
"bracketSpacing": false,
|
||||||
"arrowParens": "avoid",
|
"arrowParens": "avoid",
|
||||||
"parser": "typescript"
|
"parser": "typescript"
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 896 B |
Binary file not shown.
|
Before Width: | Height: | Size: 897 B |
@@ -1,18 +1,21 @@
|
|||||||
[](https://github.com/crazy-max/ghaction-goreleaser/releases/latest)
|
<p align="center">
|
||||||
[](https://github.com/marketplace/actions/goreleaser-action)
|
<img alt="GoReleaser Logo" src="https://avatars2.githubusercontent.com/u/24697112?v=3&s=200" height="140" />
|
||||||
[](https://github.com/crazy-max/ghaction-goreleaser/actions)
|
<h3 align="center">GoReleaser Action</h3>
|
||||||
[](https://www.patreon.com/crazymax)
|
<p align="center"><a href="https://github.com/features/actions">GitHub Action</a> for GoReleaser</p>
|
||||||
[](https://www.paypal.me/crazyws)
|
<p align="center">
|
||||||
|
<a href="https://github.com/goreleaser/goreleaser-action/releases/latest"><img alt="GitHub release" src="https://img.shields.io/github/release/goreleaser/goreleaser-action.svg?logo=github&style=flat-square"></a>
|
||||||
|
<a href="https://github.com/marketplace/actions/goreleaser-action"><img alt="GitHub marketplace" src="https://img.shields.io/badge/marketplace-goreleaser--action-blue?logo=github&style=flat-square"></a>
|
||||||
|
<a href="https://github.com/goreleaser/goreleaser-action/actions?workflow=release"><img alt="Release workflow" src="https://github.com/goreleaser/goreleaser-action/workflows/release/badge.svg"></a>
|
||||||
|
<a href="https://github.com/goreleaser/goreleaser-action/actions?workflow=test"><img alt="Test workflow" src="https://github.com/goreleaser/goreleaser-action/workflows/test/badge.svg"></a>
|
||||||
|
<a href="https://github.com/sponsors/crazy-max"><img src="https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square" alt="Become a sponsor"></a>
|
||||||
|
</p>
|
||||||
|
</p>
|
||||||
|
|
||||||
## ✨ About
|
---
|
||||||
|
|
||||||
GitHub Action for [GoReleaser](https://goreleaser.com/), a release automation tool for Go projects.
|
## Usage
|
||||||
|
|
||||||
> **:warning: Note:** To use this action, you must have access to the [GitHub Actions](https://github.com/features/actions) feature. GitHub Actions are currently only available in public beta. You can [apply for the GitHub Actions beta here](https://github.com/features/actions/signup/).
|
Below is a simple snippet to use this action. A [live example](https://github.com/goreleaser/goreleaser-action/actions) is also available for this repository.
|
||||||
|
|
||||||
## 🚀 Usage
|
|
||||||
|
|
||||||
Below is a simple snippet to use this action. A [live example](https://github.com/crazy-max/ghaction-goreleaser/actions) is also available for this repository.
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: goreleaser
|
name: goreleaser
|
||||||
@@ -27,38 +30,49 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@v1
|
||||||
-
|
-
|
||||||
name: Set up Go
|
name: Set up Go
|
||||||
uses: actions/setup-go@master
|
uses: actions/setup-go@v1
|
||||||
|
with:
|
||||||
|
go-version: 1.13.x
|
||||||
-
|
-
|
||||||
name: Run GoReleaser
|
name: Run GoReleaser
|
||||||
uses: crazy-max/ghaction-goreleaser@master
|
uses: goreleaser/goreleaser-action@v1
|
||||||
with:
|
with:
|
||||||
version: latest
|
version: latest
|
||||||
args: release --rm-dist
|
args: release --rm-dist
|
||||||
|
key: ${{ secrets.YOUR_PRIVATE_KEY }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
```
|
```
|
||||||
|
|
||||||
## 💅 Customizing
|
## Customizing
|
||||||
|
|
||||||
### inputs
|
### Inputs
|
||||||
|
|
||||||
Following inputs can be used as `step.with` keys
|
Following inputs can be used as `step.with` keys
|
||||||
|
|
||||||
| Name | Type | Default | Description |
|
| Name | Type | Default | Description |
|
||||||
|---------------|---------|-----------|------------------------------------------|
|
|---------------|---------|-----------|-------------------------------------------|
|
||||||
| `version` | String | `latest` | GoReleaser version. Example: `v0.117.0` |
|
| `version` | String | `latest` | GoReleaser version. Example: `v0.117.0` |
|
||||||
| `args` | String | | Arguments to pass to GoReleaser |
|
| `args` | String | | Arguments to pass to GoReleaser |
|
||||||
|
| `key` | String | | Private key to import |
|
||||||
|
| `workdir` | String | `.` | Working directory (below repository root) |
|
||||||
|
|
||||||
## 🤝 How can I help ?
|
### Signing
|
||||||
|
|
||||||
All kinds of contributions are welcome :raised_hands:!<br />
|
If signing is enabled in your GoReleaser configuration, populate the `key` input with your private key
|
||||||
The most basic way to show your support is to star :star2: the project, or to raise issues :speech_balloon:<br />
|
and reference the key in your signing configuration, e.g.
|
||||||
But we're not gonna lie to each other, I'd rather you buy me a beer or two :beers:!
|
|
||||||
|
|
||||||
[](https://www.patreon.com/crazymax)
|
```yaml
|
||||||
[](https://www.paypal.me/crazyws)
|
signs:
|
||||||
|
- artifacts: checksum
|
||||||
|
args: ["--batch", "-u", "<key id, fingerprint, email, ...>", "--output", "${signature}", "--detach-sign", "${artifact}"]
|
||||||
|
```
|
||||||
|
|
||||||
## 📝 License
|
This feature is currently only compatible when using the default `gpg` command and a private key without a passphrase.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
MIT. See `LICENSE` for more details.
|
MIT. See `LICENSE` for more details.
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
import fs = require('fs');
|
||||||
|
import * as installer from '../src/installer';
|
||||||
|
|
||||||
|
describe('installer', () => {
|
||||||
|
it('acquires v0.117.0 version of GoReleaser', async () => {
|
||||||
|
const goreleaser = await installer.getGoReleaser('v0.117.0');
|
||||||
|
expect(fs.existsSync(goreleaser)).toBe(true);
|
||||||
|
}, 100000);
|
||||||
|
|
||||||
|
it('acquires latest version of GoReleaser', async () => {
|
||||||
|
const goreleaser = await installer.getGoReleaser('latest');
|
||||||
|
expect(fs.existsSync(goreleaser)).toBe(true);
|
||||||
|
}, 100000);
|
||||||
|
});
|
||||||
@@ -12,6 +12,11 @@ inputs:
|
|||||||
default: 'latest'
|
default: 'latest'
|
||||||
args:
|
args:
|
||||||
description: 'Arguments to pass to GoReleaser'
|
description: 'Arguments to pass to GoReleaser'
|
||||||
|
key:
|
||||||
|
description: 'Private key to import'
|
||||||
|
workdir:
|
||||||
|
description: 'Working directory (below repository root)'
|
||||||
|
default: '.'
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node12'
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
module.exports = {
|
||||||
|
clearMocks: true,
|
||||||
|
moduleFileExtensions: ['js', 'ts'],
|
||||||
|
testEnvironment: 'node',
|
||||||
|
testMatch: ['**/*.test.ts'],
|
||||||
|
testRunner: 'jest-circus/runner',
|
||||||
|
transform: {
|
||||||
|
'^.+\\.ts$': 'ts-jest'
|
||||||
|
},
|
||||||
|
verbose: true
|
||||||
|
}
|
||||||
+2
-2
@@ -45,7 +45,7 @@ function getGoReleaser(version) {
|
|||||||
else {
|
else {
|
||||||
extPath = yield tc.extractTar(`${tmpdir}/${fileName}`);
|
extPath = yield tc.extractTar(`${tmpdir}/${fileName}`);
|
||||||
}
|
}
|
||||||
return path.join(extPath, 'goreleaser');
|
return path.join(extPath, osPlat == 'win32' ? 'goreleaser.exe' : 'goreleaser');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.getGoReleaser = getGoReleaser;
|
exports.getGoReleaser = getGoReleaser;
|
||||||
@@ -58,7 +58,7 @@ function getFileName() {
|
|||||||
}
|
}
|
||||||
function determineVersion(version) {
|
function determineVersion(version) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
let rest = new restm.RestClient('ghaction-goreleaser', 'https://github.com', undefined, {
|
let rest = new restm.RestClient('goreleaser-action', 'https://github.com', undefined, {
|
||||||
headers: {
|
headers: {
|
||||||
Accept: 'application/json'
|
Accept: 'application/json'
|
||||||
}
|
}
|
||||||
|
|||||||
+22
-4
@@ -19,28 +19,46 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
const installer = __importStar(require("./installer"));
|
const installer = __importStar(require("./installer"));
|
||||||
const core = __importStar(require("@actions/core"));
|
const core = __importStar(require("@actions/core"));
|
||||||
const exec = __importStar(require("@actions/exec"));
|
const exec = __importStar(require("@actions/exec"));
|
||||||
function run() {
|
const fs = __importStar(require("fs"));
|
||||||
|
function run(silent) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
const version = core.getInput('version') || 'latest';
|
const version = core.getInput('version') || 'latest';
|
||||||
const args = core.getInput('args');
|
const args = core.getInput('args');
|
||||||
|
const key = core.getInput('key');
|
||||||
|
const workdir = core.getInput('workdir') || '.';
|
||||||
const goreleaser = yield installer.getGoReleaser(version);
|
const goreleaser = yield installer.getGoReleaser(version);
|
||||||
|
if (workdir && workdir !== '.') {
|
||||||
|
console.log(`📂 Using ${workdir} as working directory...`);
|
||||||
|
process.chdir(workdir);
|
||||||
|
}
|
||||||
let snapshot = '';
|
let snapshot = '';
|
||||||
if (!process.env.GITHUB_REF.startsWith('refs/tags/')) {
|
if (!process.env.GITHUB_REF || !process.env.GITHUB_REF.startsWith('refs/tags/')) {
|
||||||
console.log(`⚠️ No tag found. Snapshot forced`);
|
console.log(`⚠️ No tag found. Snapshot forced`);
|
||||||
if (!args.includes('--snapshot')) {
|
if (!args.includes('--snapshot')) {
|
||||||
snapshot = ' --snapshot';
|
snapshot = ' --snapshot';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
console.log(`✅ ${process.env.GITHUB_REF.split('/')[2]}} tag found`);
|
console.log(`✅ ${process.env.GITHUB_REF.split('/')[2]} tag found`);
|
||||||
|
}
|
||||||
|
if (key) {
|
||||||
|
console.log('🔑 Importing signing key...');
|
||||||
|
let path = `${process.env.HOME}/key.asc`;
|
||||||
|
fs.writeFileSync(path, key, { mode: 0o600 });
|
||||||
|
yield exec.exec('gpg', ['--import', path], {
|
||||||
|
silent: silent
|
||||||
|
});
|
||||||
}
|
}
|
||||||
console.log('🏃 Running GoReleaser...');
|
console.log('🏃 Running GoReleaser...');
|
||||||
yield exec.exec(`${goreleaser} ${args}${snapshot}`);
|
yield exec.exec(`${goreleaser} ${args}${snapshot}`, undefined, {
|
||||||
|
silent: silent
|
||||||
|
});
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
core.setFailed(error.message);
|
core.setFailed(error.message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
exports.run = run;
|
||||||
run();
|
run();
|
||||||
|
|||||||
+139
-96
@@ -1,97 +1,140 @@
|
|||||||
# `@actions/core`
|
# `@actions/core`
|
||||||
|
|
||||||
> Core functions for setting results, logging, registering secrets and exporting variables across actions
|
> Core functions for setting results, logging, registering secrets and exporting variables across actions
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
#### Inputs/Outputs
|
### Import the package
|
||||||
|
|
||||||
You can use this library to get inputs or set outputs:
|
```js
|
||||||
|
// javascript
|
||||||
```js
|
const core = require('@actions/core');
|
||||||
const core = require('@actions/core');
|
|
||||||
|
// typescript
|
||||||
const myInput = core.getInput('inputName', { required: true });
|
import * as core from '@actions/core';
|
||||||
|
```
|
||||||
// Do stuff
|
|
||||||
|
#### Inputs/Outputs
|
||||||
core.setOutput('outputKey', 'outputVal');
|
|
||||||
```
|
Action inputs can be read with `getInput`. Outputs can be set with `setOutput` which makes them available to be mapped into inputs of other actions to ensure they are decoupled.
|
||||||
|
|
||||||
#### Exporting variables
|
```js
|
||||||
|
const myInput = core.getInput('inputName', { required: true });
|
||||||
You can also export variables for future steps. Variables get set in the environment.
|
|
||||||
|
core.setOutput('outputKey', 'outputVal');
|
||||||
```js
|
```
|
||||||
const core = require('@actions/core');
|
|
||||||
|
#### Exporting variables
|
||||||
// Do stuff
|
|
||||||
|
Since each step runs in a separate process, you can use `exportVariable` to add it to this step and future steps environment blocks.
|
||||||
core.exportVariable('envVar', 'Val');
|
|
||||||
```
|
```js
|
||||||
|
core.exportVariable('envVar', 'Val');
|
||||||
#### PATH Manipulation
|
```
|
||||||
|
|
||||||
You can explicitly add items to the path for all remaining steps in a workflow:
|
#### Setting a secret
|
||||||
|
|
||||||
```js
|
Setting a secret registers the secret with the runner to ensure it is masked in logs.
|
||||||
const core = require('@actions/core');
|
|
||||||
|
```js
|
||||||
core.addPath('pathToTool');
|
core.setSecret('myPassword');
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Exit codes
|
#### PATH Manipulation
|
||||||
|
|
||||||
You should use this library to set the failing exit code for your action:
|
To make a tool's path available in the path for the remainder of the job (without altering the machine or containers state), use `addPath`. The runner will prepend the path given to the jobs PATH.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const core = require('@actions/core');
|
core.addPath('/path/to/mytool');
|
||||||
|
```
|
||||||
try {
|
|
||||||
// Do stuff
|
#### Exit codes
|
||||||
}
|
|
||||||
catch (err) {
|
You should use this library to set the failing exit code for your action. If status is not set and the script runs to completion, that will lead to a success.
|
||||||
// setFailed logs the message and sets a failing exit code
|
|
||||||
core.setFailed(`Action failed with error ${err}`);
|
```js
|
||||||
}
|
const core = require('@actions/core');
|
||||||
|
|
||||||
```
|
try {
|
||||||
|
// Do stuff
|
||||||
#### Logging
|
}
|
||||||
|
catch (err) {
|
||||||
Finally, this library provides some utilities for logging. Note that debug logging is hidden from the logs by default. This behavior can be toggled by enabling the [Step Debug Logs](../../docs/action-debugging.md#step-debug-logs).
|
// setFailed logs the message and sets a failing exit code
|
||||||
|
core.setFailed(`Action failed with error ${err}`);
|
||||||
```js
|
}
|
||||||
const core = require('@actions/core');
|
|
||||||
|
Note that `setNeutral` is not yet implemented in actions V2 but equivalent functionality is being planned.
|
||||||
const myInput = core.getInput('input');
|
|
||||||
try {
|
```
|
||||||
core.debug('Inside try block');
|
|
||||||
|
#### Logging
|
||||||
if (!myInput) {
|
|
||||||
core.warning('myInput was not set');
|
Finally, this library provides some utilities for logging. Note that debug logging is hidden from the logs by default. This behavior can be toggled by enabling the [Step Debug Logs](../../docs/action-debugging.md#step-debug-logs).
|
||||||
}
|
|
||||||
|
```js
|
||||||
// Do stuff
|
const core = require('@actions/core');
|
||||||
}
|
|
||||||
catch (err) {
|
const myInput = core.getInput('input');
|
||||||
core.error(`Error ${err}, action may still succeed though`);
|
try {
|
||||||
}
|
core.debug('Inside try block');
|
||||||
```
|
|
||||||
|
if (!myInput) {
|
||||||
This library can also wrap chunks of output in foldable groups.
|
core.warning('myInput was not set');
|
||||||
|
}
|
||||||
```js
|
|
||||||
const core = require('@actions/core')
|
// Do stuff
|
||||||
|
}
|
||||||
// Manually wrap output
|
catch (err) {
|
||||||
core.startGroup('Do some function')
|
core.error(`Error ${err}, action may still succeed though`);
|
||||||
doSomeFunction()
|
}
|
||||||
core.endGroup()
|
```
|
||||||
|
|
||||||
// Wrap an asynchronous function call
|
This library can also wrap chunks of output in foldable groups.
|
||||||
const result = await core.group('Do something async', async () => {
|
|
||||||
const response = await doSomeHTTPRequest()
|
```js
|
||||||
return response
|
const core = require('@actions/core')
|
||||||
})
|
|
||||||
|
// Manually wrap output
|
||||||
|
core.startGroup('Do some function')
|
||||||
|
doSomeFunction()
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
|
// Wrap an asynchronous function call
|
||||||
|
const result = await core.group('Do something async', async () => {
|
||||||
|
const response = await doSomeHTTPRequest()
|
||||||
|
return response
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Action state
|
||||||
|
|
||||||
|
You can use this library to save state and get state for sharing information between a given wrapper action:
|
||||||
|
|
||||||
|
**action.yml**
|
||||||
|
```yaml
|
||||||
|
name: 'Wrapper action sample'
|
||||||
|
inputs:
|
||||||
|
name:
|
||||||
|
default: 'GitHub'
|
||||||
|
runs:
|
||||||
|
using: 'node12'
|
||||||
|
main: 'main.js'
|
||||||
|
post: 'cleanup.js'
|
||||||
|
```
|
||||||
|
|
||||||
|
In action's `main.js`:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const core = require('@actions/core');
|
||||||
|
|
||||||
|
core.saveState("pidToKill", 12345);
|
||||||
|
```
|
||||||
|
|
||||||
|
In action's `cleanup.js`:
|
||||||
|
```js
|
||||||
|
const core = require('@actions/core');
|
||||||
|
|
||||||
|
var pid = core.getState("pidToKill");
|
||||||
|
|
||||||
|
process.kill(pid);
|
||||||
```
|
```
|
||||||
+16
-16
@@ -1,16 +1,16 @@
|
|||||||
interface CommandProperties {
|
interface CommandProperties {
|
||||||
[key: string]: string;
|
[key: string]: string;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Commands
|
* Commands
|
||||||
*
|
*
|
||||||
* Command Format:
|
* Command Format:
|
||||||
* ##[name key=value;key=value]message
|
* ##[name key=value;key=value]message
|
||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
* ##[warning]This is the user warning message
|
* ##[warning]This is the user warning message
|
||||||
* ##[set-secret name=mypassword]definitelyNotAPassword!
|
* ##[set-secret name=mypassword]definitelyNotAPassword!
|
||||||
*/
|
*/
|
||||||
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
|
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
|
||||||
export declare function issue(name: string, message?: string): void;
|
export declare function issue(name: string, message?: string): void;
|
||||||
export {};
|
export {};
|
||||||
|
|||||||
+65
-65
@@ -1,66 +1,66 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const os = require("os");
|
const os = require("os");
|
||||||
/**
|
/**
|
||||||
* Commands
|
* Commands
|
||||||
*
|
*
|
||||||
* Command Format:
|
* Command Format:
|
||||||
* ##[name key=value;key=value]message
|
* ##[name key=value;key=value]message
|
||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
* ##[warning]This is the user warning message
|
* ##[warning]This is the user warning message
|
||||||
* ##[set-secret name=mypassword]definitelyNotAPassword!
|
* ##[set-secret name=mypassword]definitelyNotAPassword!
|
||||||
*/
|
*/
|
||||||
function issueCommand(command, properties, message) {
|
function issueCommand(command, properties, message) {
|
||||||
const cmd = new Command(command, properties, message);
|
const cmd = new Command(command, properties, message);
|
||||||
process.stdout.write(cmd.toString() + os.EOL);
|
process.stdout.write(cmd.toString() + os.EOL);
|
||||||
}
|
}
|
||||||
exports.issueCommand = issueCommand;
|
exports.issueCommand = issueCommand;
|
||||||
function issue(name, message = '') {
|
function issue(name, message = '') {
|
||||||
issueCommand(name, {}, message);
|
issueCommand(name, {}, message);
|
||||||
}
|
}
|
||||||
exports.issue = issue;
|
exports.issue = issue;
|
||||||
const CMD_STRING = '::';
|
const CMD_STRING = '::';
|
||||||
class Command {
|
class Command {
|
||||||
constructor(command, properties, message) {
|
constructor(command, properties, message) {
|
||||||
if (!command) {
|
if (!command) {
|
||||||
command = 'missing.command';
|
command = 'missing.command';
|
||||||
}
|
}
|
||||||
this.command = command;
|
this.command = command;
|
||||||
this.properties = properties;
|
this.properties = properties;
|
||||||
this.message = message;
|
this.message = message;
|
||||||
}
|
}
|
||||||
toString() {
|
toString() {
|
||||||
let cmdStr = CMD_STRING + this.command;
|
let cmdStr = CMD_STRING + this.command;
|
||||||
if (this.properties && Object.keys(this.properties).length > 0) {
|
if (this.properties && Object.keys(this.properties).length > 0) {
|
||||||
cmdStr += ' ';
|
cmdStr += ' ';
|
||||||
for (const key in this.properties) {
|
for (const key in this.properties) {
|
||||||
if (this.properties.hasOwnProperty(key)) {
|
if (this.properties.hasOwnProperty(key)) {
|
||||||
const val = this.properties[key];
|
const val = this.properties[key];
|
||||||
if (val) {
|
if (val) {
|
||||||
// safely append the val - avoid blowing up when attempting to
|
// safely append the val - avoid blowing up when attempting to
|
||||||
// call .replace() if message is not a string for some reason
|
// call .replace() if message is not a string for some reason
|
||||||
cmdStr += `${key}=${escape(`${val || ''}`)},`;
|
cmdStr += `${key}=${escape(`${val || ''}`)},`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cmdStr += CMD_STRING;
|
cmdStr += CMD_STRING;
|
||||||
// safely append the message - avoid blowing up when attempting to
|
// safely append the message - avoid blowing up when attempting to
|
||||||
// call .replace() if message is not a string for some reason
|
// call .replace() if message is not a string for some reason
|
||||||
const message = `${this.message || ''}`;
|
const message = `${this.message || ''}`;
|
||||||
cmdStr += escapeData(message);
|
cmdStr += escapeData(message);
|
||||||
return cmdStr;
|
return cmdStr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function escapeData(s) {
|
function escapeData(s) {
|
||||||
return s.replace(/\r/g, '%0D').replace(/\n/g, '%0A');
|
return s.replace(/\r/g, '%0D').replace(/\n/g, '%0A');
|
||||||
}
|
}
|
||||||
function escape(s) {
|
function escape(s) {
|
||||||
return s
|
return s
|
||||||
.replace(/\r/g, '%0D')
|
.replace(/\r/g, '%0D')
|
||||||
.replace(/\n/g, '%0A')
|
.replace(/\n/g, '%0A')
|
||||||
.replace(/]/g, '%5D')
|
.replace(/]/g, '%5D')
|
||||||
.replace(/;/g, '%3B');
|
.replace(/;/g, '%3B');
|
||||||
}
|
}
|
||||||
//# sourceMappingURL=command.js.map
|
//# sourceMappingURL=command.js.map
|
||||||
+112
-99
@@ -1,99 +1,112 @@
|
|||||||
/**
|
/**
|
||||||
* Interface for getInput options
|
* Interface for getInput options
|
||||||
*/
|
*/
|
||||||
export interface InputOptions {
|
export interface InputOptions {
|
||||||
/** Optional. Whether the input is required. If required and not present, will throw. Defaults to false */
|
/** Optional. Whether the input is required. If required and not present, will throw. Defaults to false */
|
||||||
required?: boolean;
|
required?: boolean;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* The code to exit an action
|
* The code to exit an action
|
||||||
*/
|
*/
|
||||||
export declare enum ExitCode {
|
export declare enum ExitCode {
|
||||||
/**
|
/**
|
||||||
* A code indicating that the action was successful
|
* A code indicating that the action was successful
|
||||||
*/
|
*/
|
||||||
Success = 0,
|
Success = 0,
|
||||||
/**
|
/**
|
||||||
* A code indicating that the action was a failure
|
* A code indicating that the action was a failure
|
||||||
*/
|
*/
|
||||||
Failure = 1
|
Failure = 1
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* sets env variable for this action and future actions in the job
|
* Sets env variable for this action and future actions in the job
|
||||||
* @param name the name of the variable to set
|
* @param name the name of the variable to set
|
||||||
* @param val the value of the variable
|
* @param val the value of the variable
|
||||||
*/
|
*/
|
||||||
export declare function exportVariable(name: string, val: string): void;
|
export declare function exportVariable(name: string, val: string): void;
|
||||||
/**
|
/**
|
||||||
* exports the variable and registers a secret which will get masked from logs
|
* Registers a secret which will get masked from logs
|
||||||
* @param name the name of the variable to set
|
* @param secret value of the secret
|
||||||
* @param val value of the secret
|
*/
|
||||||
*/
|
export declare function setSecret(secret: string): void;
|
||||||
export declare function exportSecret(name: string, val: string): void;
|
/**
|
||||||
/**
|
* Prepends inputPath to the PATH (for this action and future actions)
|
||||||
* Prepends inputPath to the PATH (for this action and future actions)
|
* @param inputPath
|
||||||
* @param inputPath
|
*/
|
||||||
*/
|
export declare function addPath(inputPath: string): void;
|
||||||
export declare function addPath(inputPath: string): void;
|
/**
|
||||||
/**
|
* Gets the value of an input. The value is also trimmed.
|
||||||
* Gets the value of an input. The value is also trimmed.
|
*
|
||||||
*
|
* @param name name of the input to get
|
||||||
* @param name name of the input to get
|
* @param options optional. See InputOptions.
|
||||||
* @param options optional. See InputOptions.
|
* @returns string
|
||||||
* @returns string
|
*/
|
||||||
*/
|
export declare function getInput(name: string, options?: InputOptions): string;
|
||||||
export declare function getInput(name: string, options?: InputOptions): string;
|
/**
|
||||||
/**
|
* Sets the value of an output.
|
||||||
* Sets the value of an output.
|
*
|
||||||
*
|
* @param name name of the output to set
|
||||||
* @param name name of the output to set
|
* @param value value to store
|
||||||
* @param value value to store
|
*/
|
||||||
*/
|
export declare function setOutput(name: string, value: string): void;
|
||||||
export declare function setOutput(name: string, value: string): void;
|
/**
|
||||||
/**
|
* Sets the action status to failed.
|
||||||
* Sets the action status to failed.
|
* When the action exits it will be with an exit code of 1
|
||||||
* When the action exits it will be with an exit code of 1
|
* @param message add error issue message
|
||||||
* @param message add error issue message
|
*/
|
||||||
*/
|
export declare function setFailed(message: string): void;
|
||||||
export declare function setFailed(message: string): void;
|
/**
|
||||||
/**
|
* Writes debug message to user log
|
||||||
* Writes debug message to user log
|
* @param message debug message
|
||||||
* @param message debug message
|
*/
|
||||||
*/
|
export declare function debug(message: string): void;
|
||||||
export declare function debug(message: string): void;
|
/**
|
||||||
/**
|
* Adds an error issue
|
||||||
* Adds an error issue
|
* @param message error issue message
|
||||||
* @param message error issue message
|
*/
|
||||||
*/
|
export declare function error(message: string): void;
|
||||||
export declare function error(message: string): void;
|
/**
|
||||||
/**
|
* Adds an warning issue
|
||||||
* Adds an warning issue
|
* @param message warning issue message
|
||||||
* @param message warning issue message
|
*/
|
||||||
*/
|
export declare function warning(message: string): void;
|
||||||
export declare function warning(message: string): void;
|
/**
|
||||||
/**
|
* Writes info to log with console.log.
|
||||||
* Writes info to log with console.log.
|
* @param message info message
|
||||||
* @param message info message
|
*/
|
||||||
*/
|
export declare function info(message: string): void;
|
||||||
export declare function info(message: string): void;
|
/**
|
||||||
/**
|
* Begin an output group.
|
||||||
* Begin an output group.
|
*
|
||||||
*
|
* Output until the next `groupEnd` will be foldable in this group
|
||||||
* Output until the next `groupEnd` will be foldable in this group
|
*
|
||||||
*
|
* @param name The name of the output group
|
||||||
* @param name The name of the output group
|
*/
|
||||||
*/
|
export declare function startGroup(name: string): void;
|
||||||
export declare function startGroup(name: string): void;
|
/**
|
||||||
/**
|
* End an output group.
|
||||||
* End an output group.
|
*/
|
||||||
*/
|
export declare function endGroup(): void;
|
||||||
export declare function endGroup(): void;
|
/**
|
||||||
/**
|
* Wrap an asynchronous function call in a group.
|
||||||
* Wrap an asynchronous function call in a group.
|
*
|
||||||
*
|
* Returns the same type as the function itself.
|
||||||
* Returns the same type as the function itself.
|
*
|
||||||
*
|
* @param name The name of the group
|
||||||
* @param name The name of the group
|
* @param fn The function to wrap in the group
|
||||||
* @param fn The function to wrap in the group
|
*/
|
||||||
*/
|
export declare function group<T>(name: string, fn: () => Promise<T>): Promise<T>;
|
||||||
export declare function group<T>(name: string, fn: () => Promise<T>): Promise<T>;
|
/**
|
||||||
|
* Saves state for current action, the state can only be retrieved by this action's post job execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to store
|
||||||
|
* @param value value to store
|
||||||
|
*/
|
||||||
|
export declare function saveState(name: string, value: string): void;
|
||||||
|
/**
|
||||||
|
* Gets the value of an state set by this action's main execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to get
|
||||||
|
* @returns string
|
||||||
|
*/
|
||||||
|
export declare function getState(name: string): string;
|
||||||
|
|||||||
+194
-176
@@ -1,177 +1,195 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const command_1 = require("./command");
|
const command_1 = require("./command");
|
||||||
const os = require("os");
|
const os = require("os");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
/**
|
/**
|
||||||
* The code to exit an action
|
* The code to exit an action
|
||||||
*/
|
*/
|
||||||
var ExitCode;
|
var ExitCode;
|
||||||
(function (ExitCode) {
|
(function (ExitCode) {
|
||||||
/**
|
/**
|
||||||
* A code indicating that the action was successful
|
* A code indicating that the action was successful
|
||||||
*/
|
*/
|
||||||
ExitCode[ExitCode["Success"] = 0] = "Success";
|
ExitCode[ExitCode["Success"] = 0] = "Success";
|
||||||
/**
|
/**
|
||||||
* A code indicating that the action was a failure
|
* A code indicating that the action was a failure
|
||||||
*/
|
*/
|
||||||
ExitCode[ExitCode["Failure"] = 1] = "Failure";
|
ExitCode[ExitCode["Failure"] = 1] = "Failure";
|
||||||
})(ExitCode = exports.ExitCode || (exports.ExitCode = {}));
|
})(ExitCode = exports.ExitCode || (exports.ExitCode = {}));
|
||||||
//-----------------------------------------------------------------------
|
//-----------------------------------------------------------------------
|
||||||
// Variables
|
// Variables
|
||||||
//-----------------------------------------------------------------------
|
//-----------------------------------------------------------------------
|
||||||
/**
|
/**
|
||||||
* sets env variable for this action and future actions in the job
|
* Sets env variable for this action and future actions in the job
|
||||||
* @param name the name of the variable to set
|
* @param name the name of the variable to set
|
||||||
* @param val the value of the variable
|
* @param val the value of the variable
|
||||||
*/
|
*/
|
||||||
function exportVariable(name, val) {
|
function exportVariable(name, val) {
|
||||||
process.env[name] = val;
|
process.env[name] = val;
|
||||||
command_1.issueCommand('set-env', { name }, val);
|
command_1.issueCommand('set-env', { name }, val);
|
||||||
}
|
}
|
||||||
exports.exportVariable = exportVariable;
|
exports.exportVariable = exportVariable;
|
||||||
/**
|
/**
|
||||||
* exports the variable and registers a secret which will get masked from logs
|
* Registers a secret which will get masked from logs
|
||||||
* @param name the name of the variable to set
|
* @param secret value of the secret
|
||||||
* @param val value of the secret
|
*/
|
||||||
*/
|
function setSecret(secret) {
|
||||||
function exportSecret(name, val) {
|
command_1.issueCommand('add-mask', {}, secret);
|
||||||
exportVariable(name, val);
|
}
|
||||||
// the runner will error with not implemented
|
exports.setSecret = setSecret;
|
||||||
// leaving the function but raising the error earlier
|
/**
|
||||||
command_1.issueCommand('set-secret', {}, val);
|
* Prepends inputPath to the PATH (for this action and future actions)
|
||||||
throw new Error('Not implemented.');
|
* @param inputPath
|
||||||
}
|
*/
|
||||||
exports.exportSecret = exportSecret;
|
function addPath(inputPath) {
|
||||||
/**
|
command_1.issueCommand('add-path', {}, inputPath);
|
||||||
* Prepends inputPath to the PATH (for this action and future actions)
|
process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`;
|
||||||
* @param inputPath
|
}
|
||||||
*/
|
exports.addPath = addPath;
|
||||||
function addPath(inputPath) {
|
/**
|
||||||
command_1.issueCommand('add-path', {}, inputPath);
|
* Gets the value of an input. The value is also trimmed.
|
||||||
process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`;
|
*
|
||||||
}
|
* @param name name of the input to get
|
||||||
exports.addPath = addPath;
|
* @param options optional. See InputOptions.
|
||||||
/**
|
* @returns string
|
||||||
* Gets the value of an input. The value is also trimmed.
|
*/
|
||||||
*
|
function getInput(name, options) {
|
||||||
* @param name name of the input to get
|
const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || '';
|
||||||
* @param options optional. See InputOptions.
|
if (options && options.required && !val) {
|
||||||
* @returns string
|
throw new Error(`Input required and not supplied: ${name}`);
|
||||||
*/
|
}
|
||||||
function getInput(name, options) {
|
return val.trim();
|
||||||
const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || '';
|
}
|
||||||
if (options && options.required && !val) {
|
exports.getInput = getInput;
|
||||||
throw new Error(`Input required and not supplied: ${name}`);
|
/**
|
||||||
}
|
* Sets the value of an output.
|
||||||
return val.trim();
|
*
|
||||||
}
|
* @param name name of the output to set
|
||||||
exports.getInput = getInput;
|
* @param value value to store
|
||||||
/**
|
*/
|
||||||
* Sets the value of an output.
|
function setOutput(name, value) {
|
||||||
*
|
command_1.issueCommand('set-output', { name }, value);
|
||||||
* @param name name of the output to set
|
}
|
||||||
* @param value value to store
|
exports.setOutput = setOutput;
|
||||||
*/
|
//-----------------------------------------------------------------------
|
||||||
function setOutput(name, value) {
|
// Results
|
||||||
command_1.issueCommand('set-output', { name }, value);
|
//-----------------------------------------------------------------------
|
||||||
}
|
/**
|
||||||
exports.setOutput = setOutput;
|
* Sets the action status to failed.
|
||||||
//-----------------------------------------------------------------------
|
* When the action exits it will be with an exit code of 1
|
||||||
// Results
|
* @param message add error issue message
|
||||||
//-----------------------------------------------------------------------
|
*/
|
||||||
/**
|
function setFailed(message) {
|
||||||
* Sets the action status to failed.
|
process.exitCode = ExitCode.Failure;
|
||||||
* When the action exits it will be with an exit code of 1
|
error(message);
|
||||||
* @param message add error issue message
|
}
|
||||||
*/
|
exports.setFailed = setFailed;
|
||||||
function setFailed(message) {
|
//-----------------------------------------------------------------------
|
||||||
process.exitCode = ExitCode.Failure;
|
// Logging Commands
|
||||||
error(message);
|
//-----------------------------------------------------------------------
|
||||||
}
|
/**
|
||||||
exports.setFailed = setFailed;
|
* Writes debug message to user log
|
||||||
//-----------------------------------------------------------------------
|
* @param message debug message
|
||||||
// Logging Commands
|
*/
|
||||||
//-----------------------------------------------------------------------
|
function debug(message) {
|
||||||
/**
|
command_1.issueCommand('debug', {}, message);
|
||||||
* Writes debug message to user log
|
}
|
||||||
* @param message debug message
|
exports.debug = debug;
|
||||||
*/
|
/**
|
||||||
function debug(message) {
|
* Adds an error issue
|
||||||
command_1.issueCommand('debug', {}, message);
|
* @param message error issue message
|
||||||
}
|
*/
|
||||||
exports.debug = debug;
|
function error(message) {
|
||||||
/**
|
command_1.issue('error', message);
|
||||||
* Adds an error issue
|
}
|
||||||
* @param message error issue message
|
exports.error = error;
|
||||||
*/
|
/**
|
||||||
function error(message) {
|
* Adds an warning issue
|
||||||
command_1.issue('error', message);
|
* @param message warning issue message
|
||||||
}
|
*/
|
||||||
exports.error = error;
|
function warning(message) {
|
||||||
/**
|
command_1.issue('warning', message);
|
||||||
* Adds an warning issue
|
}
|
||||||
* @param message warning issue message
|
exports.warning = warning;
|
||||||
*/
|
/**
|
||||||
function warning(message) {
|
* Writes info to log with console.log.
|
||||||
command_1.issue('warning', message);
|
* @param message info message
|
||||||
}
|
*/
|
||||||
exports.warning = warning;
|
function info(message) {
|
||||||
/**
|
process.stdout.write(message + os.EOL);
|
||||||
* Writes info to log with console.log.
|
}
|
||||||
* @param message info message
|
exports.info = info;
|
||||||
*/
|
/**
|
||||||
function info(message) {
|
* Begin an output group.
|
||||||
process.stdout.write(message + os.EOL);
|
*
|
||||||
}
|
* Output until the next `groupEnd` will be foldable in this group
|
||||||
exports.info = info;
|
*
|
||||||
/**
|
* @param name The name of the output group
|
||||||
* Begin an output group.
|
*/
|
||||||
*
|
function startGroup(name) {
|
||||||
* Output until the next `groupEnd` will be foldable in this group
|
command_1.issue('group', name);
|
||||||
*
|
}
|
||||||
* @param name The name of the output group
|
exports.startGroup = startGroup;
|
||||||
*/
|
/**
|
||||||
function startGroup(name) {
|
* End an output group.
|
||||||
command_1.issue('group', name);
|
*/
|
||||||
}
|
function endGroup() {
|
||||||
exports.startGroup = startGroup;
|
command_1.issue('endgroup');
|
||||||
/**
|
}
|
||||||
* End an output group.
|
exports.endGroup = endGroup;
|
||||||
*/
|
/**
|
||||||
function endGroup() {
|
* Wrap an asynchronous function call in a group.
|
||||||
command_1.issue('endgroup');
|
*
|
||||||
}
|
* Returns the same type as the function itself.
|
||||||
exports.endGroup = endGroup;
|
*
|
||||||
/**
|
* @param name The name of the group
|
||||||
* Wrap an asynchronous function call in a group.
|
* @param fn The function to wrap in the group
|
||||||
*
|
*/
|
||||||
* Returns the same type as the function itself.
|
function group(name, fn) {
|
||||||
*
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
* @param name The name of the group
|
startGroup(name);
|
||||||
* @param fn The function to wrap in the group
|
let result;
|
||||||
*/
|
try {
|
||||||
function group(name, fn) {
|
result = yield fn();
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
}
|
||||||
startGroup(name);
|
finally {
|
||||||
let result;
|
endGroup();
|
||||||
try {
|
}
|
||||||
result = yield fn();
|
return result;
|
||||||
}
|
});
|
||||||
finally {
|
}
|
||||||
endGroup();
|
exports.group = group;
|
||||||
}
|
//-----------------------------------------------------------------------
|
||||||
return result;
|
// Wrapper action state
|
||||||
});
|
//-----------------------------------------------------------------------
|
||||||
}
|
/**
|
||||||
exports.group = group;
|
* Saves state for current action, the state can only be retrieved by this action's post job execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to store
|
||||||
|
* @param value value to store
|
||||||
|
*/
|
||||||
|
function saveState(name, value) {
|
||||||
|
command_1.issueCommand('save-state', { name }, value);
|
||||||
|
}
|
||||||
|
exports.saveState = saveState;
|
||||||
|
/**
|
||||||
|
* Gets the value of an state set by this action's main execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to get
|
||||||
|
* @returns string
|
||||||
|
*/
|
||||||
|
function getState(name) {
|
||||||
|
return process.env[`STATE_${name}`] || '';
|
||||||
|
}
|
||||||
|
exports.getState = getState;
|
||||||
//# sourceMappingURL=core.js.map
|
//# sourceMappingURL=core.js.map
|
||||||
+1
-1
@@ -1 +1 @@
|
|||||||
{"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,uCAA6C;AAE7C,yBAAwB;AACxB,6BAA4B;AAU5B;;GAEG;AACH,IAAY,QAUX;AAVD,WAAY,QAAQ;IAClB;;OAEG;IACH,6CAAW,CAAA;IAEX;;OAEG;IACH,6CAAW,CAAA;AACb,CAAC,EAVW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAUnB;AAED,yEAAyE;AACzE,YAAY;AACZ,yEAAyE;AAEzE;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAY,EAAE,GAAW;IACtD,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,CAAA;IACvB,sBAAY,CAAC,SAAS,EAAE,EAAC,IAAI,EAAC,EAAE,GAAG,CAAC,CAAA;AACtC,CAAC;AAHD,wCAGC;AAED;;;;GAIG;AACH,SAAgB,YAAY,CAAC,IAAY,EAAE,GAAW;IACpD,cAAc,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;IAEzB,6CAA6C;IAC7C,qDAAqD;IACrD,sBAAY,CAAC,YAAY,EAAE,EAAE,EAAE,GAAG,CAAC,CAAA;IACnC,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAA;AACrC,CAAC;AAPD,oCAOC;AAED;;;GAGG;AACH,SAAgB,OAAO,CAAC,SAAiB;IACvC,sBAAY,CAAC,UAAU,EAAE,EAAE,EAAE,SAAS,CAAC,CAAA;IACvC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAA;AAC7E,CAAC;AAHD,0BAGC;AAED;;;;;;GAMG;AACH,SAAgB,QAAQ,CAAC,IAAY,EAAE,OAAsB;IAC3D,MAAM,GAAG,GACP,OAAO,CAAC,GAAG,CAAC,SAAS,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,WAAW,EAAE,EAAE,CAAC,IAAI,EAAE,CAAA;IACrE,IAAI,OAAO,IAAI,OAAO,CAAC,QAAQ,IAAI,CAAC,GAAG,EAAE;QACvC,MAAM,IAAI,KAAK,CAAC,oCAAoC,IAAI,EAAE,CAAC,CAAA;KAC5D;IAED,OAAO,GAAG,CAAC,IAAI,EAAE,CAAA;AACnB,CAAC;AARD,4BAQC;AAED;;;;;GAKG;AACH,SAAgB,SAAS,CAAC,IAAY,EAAE,KAAa;IACnD,sBAAY,CAAC,YAAY,EAAE,EAAC,IAAI,EAAC,EAAE,KAAK,CAAC,CAAA;AAC3C,CAAC;AAFD,8BAEC;AAED,yEAAyE;AACzE,UAAU;AACV,yEAAyE;AAEzE;;;;GAIG;AACH,SAAgB,SAAS,CAAC,OAAe;IACvC,OAAO,CAAC,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAA;IACnC,KAAK,CAAC,OAAO,CAAC,CAAA;AAChB,CAAC;AAHD,8BAGC;AAED,yEAAyE;AACzE,mBAAmB;AACnB,yEAAyE;AAEzE;;;GAGG;AACH,SAAgB,KAAK,CAAC,OAAe;IACnC,sBAAY,CAAC,OAAO,EAAE,EAAE,EAAE,OAAO,CAAC,CAAA;AACpC,CAAC;AAFD,sBAEC;AAED;;;GAGG;AACH,SAAgB,KAAK,CAAC,OAAe;IACnC,eAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;AACzB,CAAC;AAFD,sBAEC;AAED;;;GAGG;AACH,SAAgB,OAAO,CAAC,OAAe;IACrC,eAAK,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;AAC3B,CAAC;AAFD,0BAEC;AAED;;;GAGG;AACH,SAAgB,IAAI,CAAC,OAAe;IAClC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AACxC,CAAC;AAFD,oBAEC;AAED;;;;;;GAMG;AACH,SAAgB,UAAU,CAAC,IAAY;IACrC,eAAK,CAAC,OAAO,EAAE,IAAI,CAAC,CAAA;AACtB,CAAC;AAFD,gCAEC;AAED;;GAEG;AACH,SAAgB,QAAQ;IACtB,eAAK,CAAC,UAAU,CAAC,CAAA;AACnB,CAAC;AAFD,4BAEC;AAED;;;;;;;GAOG;AACH,SAAsB,KAAK,CAAI,IAAY,EAAE,EAAoB;;QAC/D,UAAU,CAAC,IAAI,CAAC,CAAA;QAEhB,IAAI,MAAS,CAAA;QAEb,IAAI;YACF,MAAM,GAAG,MAAM,EAAE,EAAE,CAAA;SACpB;gBAAS;YACR,QAAQ,EAAE,CAAA;SACX;QAED,OAAO,MAAM,CAAA;IACf,CAAC;CAAA;AAZD,sBAYC"}
|
{"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,uCAA6C;AAE7C,yBAAwB;AACxB,6BAA4B;AAU5B;;GAEG;AACH,IAAY,QAUX;AAVD,WAAY,QAAQ;IAClB;;OAEG;IACH,6CAAW,CAAA;IAEX;;OAEG;IACH,6CAAW,CAAA;AACb,CAAC,EAVW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAUnB;AAED,yEAAyE;AACzE,YAAY;AACZ,yEAAyE;AAEzE;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAY,EAAE,GAAW;IACtD,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,CAAA;IACvB,sBAAY,CAAC,SAAS,EAAE,EAAC,IAAI,EAAC,EAAE,GAAG,CAAC,CAAA;AACtC,CAAC;AAHD,wCAGC;AAED;;;GAGG;AACH,SAAgB,SAAS,CAAC,MAAc;IACtC,sBAAY,CAAC,UAAU,EAAE,EAAE,EAAE,MAAM,CAAC,CAAA;AACtC,CAAC;AAFD,8BAEC;AAED;;;GAGG;AACH,SAAgB,OAAO,CAAC,SAAiB;IACvC,sBAAY,CAAC,UAAU,EAAE,EAAE,EAAE,SAAS,CAAC,CAAA;IACvC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAA;AAC7E,CAAC;AAHD,0BAGC;AAED;;;;;;GAMG;AACH,SAAgB,QAAQ,CAAC,IAAY,EAAE,OAAsB;IAC3D,MAAM,GAAG,GACP,OAAO,CAAC,GAAG,CAAC,SAAS,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,WAAW,EAAE,EAAE,CAAC,IAAI,EAAE,CAAA;IACrE,IAAI,OAAO,IAAI,OAAO,CAAC,QAAQ,IAAI,CAAC,GAAG,EAAE;QACvC,MAAM,IAAI,KAAK,CAAC,oCAAoC,IAAI,EAAE,CAAC,CAAA;KAC5D;IAED,OAAO,GAAG,CAAC,IAAI,EAAE,CAAA;AACnB,CAAC;AARD,4BAQC;AAED;;;;;GAKG;AACH,SAAgB,SAAS,CAAC,IAAY,EAAE,KAAa;IACnD,sBAAY,CAAC,YAAY,EAAE,EAAC,IAAI,EAAC,EAAE,KAAK,CAAC,CAAA;AAC3C,CAAC;AAFD,8BAEC;AAED,yEAAyE;AACzE,UAAU;AACV,yEAAyE;AAEzE;;;;GAIG;AACH,SAAgB,SAAS,CAAC,OAAe;IACvC,OAAO,CAAC,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAA;IACnC,KAAK,CAAC,OAAO,CAAC,CAAA;AAChB,CAAC;AAHD,8BAGC;AAED,yEAAyE;AACzE,mBAAmB;AACnB,yEAAyE;AAEzE;;;GAGG;AACH,SAAgB,KAAK,CAAC,OAAe;IACnC,sBAAY,CAAC,OAAO,EAAE,EAAE,EAAE,OAAO,CAAC,CAAA;AACpC,CAAC;AAFD,sBAEC;AAED;;;GAGG;AACH,SAAgB,KAAK,CAAC,OAAe;IACnC,eAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;AACzB,CAAC;AAFD,sBAEC;AAED;;;GAGG;AACH,SAAgB,OAAO,CAAC,OAAe;IACrC,eAAK,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;AAC3B,CAAC;AAFD,0BAEC;AAED;;;GAGG;AACH,SAAgB,IAAI,CAAC,OAAe;IAClC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AACxC,CAAC;AAFD,oBAEC;AAED;;;;;;GAMG;AACH,SAAgB,UAAU,CAAC,IAAY;IACrC,eAAK,CAAC,OAAO,EAAE,IAAI,CAAC,CAAA;AACtB,CAAC;AAFD,gCAEC;AAED;;GAEG;AACH,SAAgB,QAAQ;IACtB,eAAK,CAAC,UAAU,CAAC,CAAA;AACnB,CAAC;AAFD,4BAEC;AAED;;;;;;;GAOG;AACH,SAAsB,KAAK,CAAI,IAAY,EAAE,EAAoB;;QAC/D,UAAU,CAAC,IAAI,CAAC,CAAA;QAEhB,IAAI,MAAS,CAAA;QAEb,IAAI;YACF,MAAM,GAAG,MAAM,EAAE,EAAE,CAAA;SACpB;gBAAS;YACR,QAAQ,EAAE,CAAA;SACX;QAED,OAAO,MAAM,CAAA;IACf,CAAC;CAAA;AAZD,sBAYC;AAED,yEAAyE;AACzE,uBAAuB;AACvB,yEAAyE;AAEzE;;;;;GAKG;AACH,SAAgB,SAAS,CAAC,IAAY,EAAE,KAAa;IACnD,sBAAY,CAAC,YAAY,EAAE,EAAC,IAAI,EAAC,EAAE,KAAK,CAAC,CAAA;AAC3C,CAAC;AAFD,8BAEC;AAED;;;;;GAKG;AACH,SAAgB,QAAQ,CAAC,IAAY;IACnC,OAAO,OAAO,CAAC,GAAG,CAAC,SAAS,IAAI,EAAE,CAAC,IAAI,EAAE,CAAA;AAC3C,CAAC;AAFD,4BAEC"}
|
||||||
+14
-13
@@ -1,34 +1,34 @@
|
|||||||
{
|
{
|
||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/core@1.1.1",
|
"@actions/core@1.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/core@1.1.1",
|
"_from": "@actions/core@1.2.0",
|
||||||
"_id": "@actions/core@1.1.1",
|
"_id": "@actions/core@1.2.0",
|
||||||
"_inBundle": false,
|
"_inBundle": false,
|
||||||
"_integrity": "sha512-O5G6EmlzTVsng7VSpNtszIoQq6kOgMGNTFB/hmwKNNA4V71JyxImCIrL27vVHCt2Cb3ImkaCr6o27C2MV9Ylwg==",
|
"_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==",
|
||||||
"_location": "/@actions/core",
|
"_location": "/@actions/core",
|
||||||
"_phantomChildren": {},
|
"_phantomChildren": {},
|
||||||
"_requested": {
|
"_requested": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"registry": true,
|
"registry": true,
|
||||||
"raw": "@actions/core@1.1.1",
|
"raw": "@actions/core@1.2.0",
|
||||||
"name": "@actions/core",
|
"name": "@actions/core",
|
||||||
"escapedName": "@actions%2fcore",
|
"escapedName": "@actions%2fcore",
|
||||||
"scope": "@actions",
|
"scope": "@actions",
|
||||||
"rawSpec": "1.1.1",
|
"rawSpec": "1.2.0",
|
||||||
"saveSpec": null,
|
"saveSpec": null,
|
||||||
"fetchSpec": "1.1.1"
|
"fetchSpec": "1.2.0"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/",
|
"/",
|
||||||
"/@actions/tool-cache"
|
"/@actions/tool-cache"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz",
|
||||||
"_spec": "1.1.1",
|
"_spec": "1.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
@@ -57,11 +57,12 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/actions/toolkit.git"
|
"url": "git+https://github.com/actions/toolkit.git",
|
||||||
|
"directory": "packages/core"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: run tests from root\" && exit 1",
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
||||||
"tsc": "tsc"
|
"tsc": "tsc"
|
||||||
},
|
},
|
||||||
"version": "1.1.1"
|
"version": "1.2.0"
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/exec@1.0.1",
|
"@actions/exec@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/exec@1.0.1",
|
"_from": "@actions/exec@1.0.1",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-3
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/io@1.0.1",
|
"@actions/io@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/io@1.0.1",
|
"_from": "@actions/io@1.0.1",
|
||||||
@@ -23,12 +23,11 @@
|
|||||||
"fetchSpec": "1.0.1"
|
"fetchSpec": "1.0.1"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"#DEV:/",
|
|
||||||
"/@actions/tool-cache"
|
"/@actions/tool-cache"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
Copyright 2019 GitHub
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
+5
-5
@@ -11,7 +11,7 @@ You can use this to download tools (or other files) from a download URL:
|
|||||||
```js
|
```js
|
||||||
const tc = require('@actions/tool-cache');
|
const tc = require('@actions/tool-cache');
|
||||||
|
|
||||||
const node12Path = await tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-linux-x64.tar.gz');
|
const node12Path = await tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-linux-x64.tar.gz');
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Extract
|
#### Extract
|
||||||
@@ -22,15 +22,15 @@ These can then be extracted in platform specific ways:
|
|||||||
const tc = require('@actions/tool-cache');
|
const tc = require('@actions/tool-cache');
|
||||||
|
|
||||||
if (process.platform === 'win32') {
|
if (process.platform === 'win32') {
|
||||||
const node12Path = tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.zip');
|
const node12Path = tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.zip');
|
||||||
const node12ExtractedFolder = await tc.extractZip(node12Path, 'path/to/extract/to');
|
const node12ExtractedFolder = await tc.extractZip(node12Path, 'path/to/extract/to');
|
||||||
|
|
||||||
// Or alternately
|
// Or alternately
|
||||||
const node12Path = tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.7z');
|
const node12Path = tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.7z');
|
||||||
const node12ExtractedFolder = await tc.extract7z(node12Path, 'path/to/extract/to');
|
const node12ExtractedFolder = await tc.extract7z(node12Path, 'path/to/extract/to');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
const node12Path = await tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-linux-x64.tar.gz');
|
const node12Path = await tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-linux-x64.tar.gz');
|
||||||
const node12ExtractedFolder = await tc.extractTar(node12Path, 'path/to/extract/to');
|
const node12ExtractedFolder = await tc.extractTar(node12Path, 'path/to/extract/to');
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -45,7 +45,7 @@ You'll often want to add it to the path as part of this step:
|
|||||||
const tc = require('@actions/tool-cache');
|
const tc = require('@actions/tool-cache');
|
||||||
const core = require('@actions/core');
|
const core = require('@actions/core');
|
||||||
|
|
||||||
const node12Path = await tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-linux-x64.tar.gz');
|
const node12Path = await tc.downloadTool('https://nodejs.org/dist/v12.7.0/node-v12.7.0-linux-x64.tar.gz');
|
||||||
const node12ExtractedFolder = await tc.extractTar(node12Path, 'path/to/extract/to');
|
const node12ExtractedFolder = await tc.extractTar(node12Path, 'path/to/extract/to');
|
||||||
|
|
||||||
const cachedPath = await tc.cacheDir(node12ExtractedFolder, 'node', '12.7.0');
|
const cachedPath = await tc.cacheDir(node12ExtractedFolder, 'node', '12.7.0');
|
||||||
|
|||||||
+2
-13
@@ -218,12 +218,7 @@ function extractZip(file, dest) {
|
|||||||
yield extractZipWin(file, dest);
|
yield extractZipWin(file, dest);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (process.platform === 'darwin') {
|
yield extractZipNix(file, dest);
|
||||||
yield extractZipDarwin(file, dest);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
yield extractZipNix(file, dest);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return dest;
|
return dest;
|
||||||
});
|
});
|
||||||
@@ -252,13 +247,7 @@ function extractZipWin(file, dest) {
|
|||||||
}
|
}
|
||||||
function extractZipNix(file, dest) {
|
function extractZipNix(file, dest) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const unzipPath = path.join(__dirname, '..', 'scripts', 'externals', 'unzip');
|
const unzipPath = yield io.which('unzip');
|
||||||
yield exec_1.exec(`"${unzipPath}"`, [file], { cwd: dest });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function extractZipDarwin(file, dest) {
|
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
|
||||||
const unzipPath = path.join(__dirname, '..', 'scripts', 'externals', 'unzip-darwin');
|
|
||||||
yield exec_1.exec(`"${unzipPath}"`, [file], { cwd: dest });
|
yield exec_1.exec(`"${unzipPath}"`, [file], { cwd: dest });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+12
-13
@@ -1,33 +1,33 @@
|
|||||||
{
|
{
|
||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/tool-cache@1.1.1",
|
"@actions/tool-cache@1.1.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/tool-cache@1.1.1",
|
"_from": "@actions/tool-cache@1.1.2",
|
||||||
"_id": "@actions/tool-cache@1.1.1",
|
"_id": "@actions/tool-cache@1.1.2",
|
||||||
"_inBundle": false,
|
"_inBundle": false,
|
||||||
"_integrity": "sha512-AILekrrj/L4N/5z5TGtUKVie4nKjxDioCgOEymyYxzPhGfjIxfE71tN2VTTpiICEWJ883rPRj2+WinTr1b6yVA==",
|
"_integrity": "sha512-IJczPaZr02ECa3Lgws/TJEVco9tjOujiQSZbO3dHuXXjhd5vrUtfOgGwhmz3/f97L910OraPZ8SknofUk6RvOQ==",
|
||||||
"_location": "/@actions/tool-cache",
|
"_location": "/@actions/tool-cache",
|
||||||
"_phantomChildren": {},
|
"_phantomChildren": {},
|
||||||
"_requested": {
|
"_requested": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"registry": true,
|
"registry": true,
|
||||||
"raw": "@actions/tool-cache@1.1.1",
|
"raw": "@actions/tool-cache@1.1.2",
|
||||||
"name": "@actions/tool-cache",
|
"name": "@actions/tool-cache",
|
||||||
"escapedName": "@actions%2ftool-cache",
|
"escapedName": "@actions%2ftool-cache",
|
||||||
"scope": "@actions",
|
"scope": "@actions",
|
||||||
"rawSpec": "1.1.1",
|
"rawSpec": "1.1.2",
|
||||||
"saveSpec": null,
|
"saveSpec": null,
|
||||||
"fetchSpec": "1.1.1"
|
"fetchSpec": "1.1.2"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/"
|
"/"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.1.2.tgz",
|
||||||
"_spec": "1.1.1",
|
"_spec": "1.1.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
@@ -54,7 +54,6 @@
|
|||||||
"lib",
|
"lib",
|
||||||
"scripts"
|
"scripts"
|
||||||
],
|
],
|
||||||
"gitHead": "a2ab4bcf78e4f7080f0d45856e6eeba16f0bbc52",
|
|
||||||
"homepage": "https://github.com/actions/toolkit/tree/master/packages/exec",
|
"homepage": "https://github.com/actions/toolkit/tree/master/packages/exec",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"github",
|
"github",
|
||||||
@@ -75,5 +74,5 @@
|
|||||||
"test": "echo \"Error: run tests from root\" && exit 1",
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
||||||
"tsc": "tsc"
|
"tsc": "tsc"
|
||||||
},
|
},
|
||||||
"version": "1.1.1"
|
"version": "1.1.2"
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@sindresorhus/is@0.7.0",
|
"@sindresorhus/is@0.7.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@sindresorhus/is@0.7.0",
|
"_from": "@sindresorhus/is@0.7.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz",
|
"_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz",
|
||||||
"_spec": "0.7.0",
|
"_spec": "0.7.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@4.4.0",
|
"file-type@4.4.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@4.4.0",
|
"_from": "file-type@4.4.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz",
|
||||||
"_spec": "4.4.0",
|
"_spec": "4.4.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"archive-type@4.0.0",
|
"archive-type@4.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "archive-type@4.0.0",
|
"_from": "archive-type@4.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz",
|
||||||
"_spec": "4.0.0",
|
"_spec": "4.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"base64-js@1.3.1",
|
"base64-js@1.3.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "base64-js@1.3.1",
|
"_from": "base64-js@1.3.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
|
"_resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
|
||||||
"_spec": "1.3.1",
|
"_spec": "1.3.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "T. Jameson Little",
|
"name": "T. Jameson Little",
|
||||||
"email": "t.jameson.little@gmail.com"
|
"email": "t.jameson.little@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"bl@1.2.2",
|
"bl@1.2.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "bl@1.2.2",
|
"_from": "bl@1.2.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
|
"_resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
|
||||||
"_spec": "1.2.2",
|
"_spec": "1.2.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Rod Vagg <rod@vagg.org> (https://github.com/rvagg)",
|
"Rod Vagg <rod@vagg.org> (https://github.com/rvagg)",
|
||||||
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
|
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-alloc-unsafe@1.1.0",
|
"buffer-alloc-unsafe@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-alloc-unsafe@1.1.0",
|
"_from": "buffer-alloc-unsafe@1.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/LinusU/buffer-alloc-unsafe/issues"
|
"url": "https://github.com/LinusU/buffer-alloc-unsafe/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-alloc@1.2.0",
|
"buffer-alloc@1.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-alloc@1.2.0",
|
"_from": "buffer-alloc@1.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
||||||
"_spec": "1.2.0",
|
"_spec": "1.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/LinusU/buffer-alloc/issues"
|
"url": "https://github.com/LinusU/buffer-alloc/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-crc32@0.2.13",
|
"buffer-crc32@0.2.13",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-crc32@0.2.13",
|
"_from": "buffer-crc32@0.2.13",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
|
||||||
"_spec": "0.2.13",
|
"_spec": "0.2.13",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Brian J. Brennan",
|
"name": "Brian J. Brennan",
|
||||||
"email": "brianloveswords@gmail.com"
|
"email": "brianloveswords@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-fill@1.0.0",
|
"buffer-fill@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-fill@1.0.0",
|
"_from": "buffer-fill@1.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/LinusU/buffer-fill/issues"
|
"url": "https://github.com/LinusU/buffer-fill/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer@5.4.3",
|
"buffer@5.4.3",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer@5.4.3",
|
"_from": "buffer@5.4.3",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz",
|
||||||
"_spec": "5.4.3",
|
"_spec": "5.4.3",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Feross Aboukhadijeh",
|
"name": "Feross Aboukhadijeh",
|
||||||
"email": "feross@feross.org",
|
"email": "feross@feross.org",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"lowercase-keys@1.0.0",
|
"lowercase-keys@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "lowercase-keys@1.0.0",
|
"_from": "lowercase-keys@1.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"cacheable-request@2.1.4",
|
"cacheable-request@2.1.4",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "cacheable-request@2.1.4",
|
"_from": "cacheable-request@2.1.4",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz",
|
"_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz",
|
||||||
"_spec": "2.1.4",
|
"_spec": "2.1.4",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Luke Childs",
|
"name": "Luke Childs",
|
||||||
"email": "lukechilds123@gmail.com",
|
"email": "lukechilds123@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"caw@2.0.1",
|
"caw@2.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "caw@2.0.1",
|
"_from": "caw@2.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
|
||||||
"_spec": "2.0.1",
|
"_spec": "2.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"clone-response@1.0.2",
|
"clone-response@1.0.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "clone-response@1.0.2",
|
"_from": "clone-response@1.0.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
"_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
||||||
"_spec": "1.0.2",
|
"_spec": "1.0.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Luke Childs",
|
"name": "Luke Childs",
|
||||||
"email": "lukechilds123@gmail.com",
|
"email": "lukechilds123@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"commander@2.8.1",
|
"commander@2.8.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "commander@2.8.1",
|
"_from": "commander@2.8.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
|
"_resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
|
||||||
"_spec": "2.8.1",
|
"_spec": "2.8.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "TJ Holowaychuk",
|
"name": "TJ Holowaychuk",
|
||||||
"email": "tj@vision-media.ca"
|
"email": "tj@vision-media.ca"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"config-chain@1.1.12",
|
"config-chain@1.1.12",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "config-chain@1.1.12",
|
"_from": "config-chain@1.1.12",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz",
|
"_resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz",
|
||||||
"_spec": "1.1.12",
|
"_spec": "1.1.12",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Dominic Tarr",
|
"name": "Dominic Tarr",
|
||||||
"email": "dominic.tarr@gmail.com",
|
"email": "dominic.tarr@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"safe-buffer@5.1.2",
|
"safe-buffer@5.1.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "safe-buffer@5.1.2",
|
"_from": "safe-buffer@5.1.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
||||||
"_spec": "5.1.2",
|
"_spec": "5.1.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Feross Aboukhadijeh",
|
"name": "Feross Aboukhadijeh",
|
||||||
"email": "feross@feross.org",
|
"email": "feross@feross.org",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"content-disposition@0.5.3",
|
"content-disposition@0.5.3",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "content-disposition@0.5.3",
|
"_from": "content-disposition@0.5.3",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
"_resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
||||||
"_spec": "0.5.3",
|
"_spec": "0.5.3",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Douglas Christopher Wilson",
|
"name": "Douglas Christopher Wilson",
|
||||||
"email": "doug@somethingdoug.com"
|
"email": "doug@somethingdoug.com"
|
||||||
|
|||||||
+4
-3
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"core-util-is@1.0.2",
|
"core-util-is@1.0.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "core-util-is@1.0.2",
|
"_from": "core-util-is@1.0.2",
|
||||||
@@ -22,11 +22,12 @@
|
|||||||
"fetchSpec": "1.0.2"
|
"fetchSpec": "1.0.2"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/readable-stream"
|
"/readable-stream",
|
||||||
|
"/verror"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
"_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
||||||
"_spec": "1.0.2",
|
"_spec": "1.0.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Isaac Z. Schlueter",
|
"name": "Isaac Z. Schlueter",
|
||||||
"email": "i@izs.me",
|
"email": "i@izs.me",
|
||||||
|
|||||||
+4
-3
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decode-uri-component@0.2.0",
|
"decode-uri-component@0.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decode-uri-component@0.2.0",
|
"_from": "decode-uri-component@0.2.0",
|
||||||
@@ -22,11 +22,12 @@
|
|||||||
"fetchSpec": "0.2.0"
|
"fetchSpec": "0.2.0"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/query-string"
|
"/query-string",
|
||||||
|
"/source-map-resolve"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
|
||||||
"_spec": "0.2.0",
|
"_spec": "0.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sam Verschueren",
|
"name": "Sam Verschueren",
|
||||||
"email": "sam.verschueren@gmail.com",
|
"email": "sam.verschueren@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-response@3.3.0",
|
"decompress-response@3.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-response@3.3.0",
|
"_from": "decompress-response@3.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
|
||||||
"_spec": "3.3.0",
|
"_spec": "3.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/sindresorhus/decompress-response/issues"
|
"url": "https://github.com/sindresorhus/decompress-response/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@5.2.0",
|
"file-type@5.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@5.2.0",
|
"_from": "file-type@5.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
||||||
"_spec": "5.2.0",
|
"_spec": "5.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-tar@4.1.1",
|
"decompress-tar@4.1.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-tar@4.1.1",
|
"_from": "decompress-tar@4.1.1",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
|
||||||
"_spec": "4.1.1",
|
"_spec": "4.1.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@6.2.0",
|
"file-type@6.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@6.2.0",
|
"_from": "file-type@6.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
|
||||||
"_spec": "6.2.0",
|
"_spec": "6.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-tarbz2@4.1.1",
|
"decompress-tarbz2@4.1.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-tarbz2@4.1.1",
|
"_from": "decompress-tarbz2@4.1.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
|
||||||
"_spec": "4.1.1",
|
"_spec": "4.1.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@5.2.0",
|
"file-type@5.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@5.2.0",
|
"_from": "file-type@5.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
||||||
"_spec": "5.2.0",
|
"_spec": "5.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-targz@4.1.1",
|
"decompress-targz@4.1.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-targz@4.1.1",
|
"_from": "decompress-targz@4.1.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
|
||||||
"_spec": "4.1.1",
|
"_spec": "4.1.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@3.9.0",
|
"file-type@3.9.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@3.9.0",
|
"_from": "file-type@3.9.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
|
||||||
"_spec": "3.9.0",
|
"_spec": "3.9.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"get-stream@2.3.1",
|
"get-stream@2.3.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "get-stream@2.3.1",
|
"_from": "get-stream@2.3.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
|
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
|
||||||
"_spec": "2.3.1",
|
"_spec": "2.3.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"pify@2.3.0",
|
"pify@2.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "pify@2.3.0",
|
"_from": "pify@2.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
||||||
"_spec": "2.3.0",
|
"_spec": "2.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-unzip@4.0.1",
|
"decompress-unzip@4.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-unzip@4.0.1",
|
"_from": "decompress-unzip@4.0.1",
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
|
||||||
"_spec": "4.0.1",
|
"_spec": "4.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"pify@2.3.0",
|
"pify@2.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "pify@2.3.0",
|
"_from": "pify@2.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
||||||
"_spec": "2.3.0",
|
"_spec": "2.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress@4.2.0",
|
"decompress@4.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress@4.2.0",
|
"_from": "decompress@4.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz",
|
||||||
"_spec": "4.2.0",
|
"_spec": "4.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"download@7.1.0",
|
"download@7.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "download@7.1.0",
|
"_from": "download@7.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz",
|
||||||
"_spec": "7.1.0",
|
"_spec": "7.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"duplexer3@0.1.4",
|
"duplexer3@0.1.4",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "duplexer3@0.1.4",
|
"_from": "duplexer3@0.1.4",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
|
"_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
|
||||||
"_spec": "0.1.4",
|
"_spec": "0.1.4",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Conrad Pankoff",
|
"name": "Conrad Pankoff",
|
||||||
"email": "deoxxa@fknsrs.biz",
|
"email": "deoxxa@fknsrs.biz",
|
||||||
|
|||||||
+3
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"end-of-stream@1.4.1",
|
"end-of-stream@1.4.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "end-of-stream@1.4.1",
|
"_from": "end-of-stream@1.4.1",
|
||||||
@@ -22,11 +22,12 @@
|
|||||||
"fetchSpec": "1.4.1"
|
"fetchSpec": "1.4.1"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
|
"/pump",
|
||||||
"/tar-stream"
|
"/tar-stream"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
|
"_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
|
||||||
"_spec": "1.4.1",
|
"_spec": "1.4.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Mathias Buus",
|
"name": "Mathias Buus",
|
||||||
"email": "mathiasbuus@gmail.com"
|
"email": "mathiasbuus@gmail.com"
|
||||||
|
|||||||
+3
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"escape-string-regexp@1.0.5",
|
"escape-string-regexp@1.0.5",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "escape-string-regexp@1.0.5",
|
"_from": "escape-string-regexp@1.0.5",
|
||||||
@@ -22,12 +22,13 @@
|
|||||||
"fetchSpec": "1.0.5"
|
"fetchSpec": "1.0.5"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
|
"/chalk",
|
||||||
"/strip-outer",
|
"/strip-outer",
|
||||||
"/trim-repeated"
|
"/trim-repeated"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
||||||
"_spec": "1.0.5",
|
"_spec": "1.0.5",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ext-list@2.2.2",
|
"ext-list@2.2.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ext-list@2.2.2",
|
"_from": "ext-list@2.2.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
|
"_resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
|
||||||
"_spec": "2.2.2",
|
"_spec": "2.2.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ext-name@5.0.0",
|
"ext-name@5.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ext-name@5.0.0",
|
"_from": "ext-name@5.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
|
||||||
"_spec": "5.0.0",
|
"_spec": "5.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"fd-slicer@1.1.0",
|
"fd-slicer@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "fd-slicer@1.1.0",
|
"_from": "fd-slicer@1.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Andrew Kelley",
|
"name": "Andrew Kelley",
|
||||||
"email": "superjoe30@gmail.com"
|
"email": "superjoe30@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@8.1.0",
|
"file-type@8.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@8.1.0",
|
"_from": "file-type@8.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz",
|
||||||
"_spec": "8.1.0",
|
"_spec": "8.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"filename-reserved-regex@2.0.0",
|
"filename-reserved-regex@2.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "filename-reserved-regex@2.0.0",
|
"_from": "filename-reserved-regex@2.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
|
||||||
"_spec": "2.0.0",
|
"_spec": "2.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"filenamify@2.1.0",
|
"filenamify@2.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "filenamify@2.1.0",
|
"_from": "filenamify@2.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz",
|
||||||
"_spec": "2.1.0",
|
"_spec": "2.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"from2@2.3.0",
|
"from2@2.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "from2@2.3.0",
|
"_from": "from2@2.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
|
||||||
"_spec": "2.3.0",
|
"_spec": "2.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Hugh Kennedy",
|
"name": "Hugh Kennedy",
|
||||||
"email": "hughskennedy@gmail.com",
|
"email": "hughskennedy@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"fs-constants@1.0.0",
|
"fs-constants@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "fs-constants@1.0.0",
|
"_from": "fs-constants@1.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Mathias Buus",
|
"name": "Mathias Buus",
|
||||||
"url": "@mafintosh"
|
"url": "@mafintosh"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"get-proxy@2.1.0",
|
"get-proxy@2.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "get-proxy@2.1.0",
|
"_from": "get-proxy@2.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
|
||||||
"_spec": "2.1.0",
|
"_spec": "2.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"get-stream@3.0.0",
|
"get-stream@3.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "get-stream@3.0.0",
|
"_from": "get-stream@3.0.0",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
|
||||||
"_spec": "3.0.0",
|
"_spec": "3.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"got@8.3.2",
|
"got@8.3.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "got@8.3.2",
|
"_from": "got@8.3.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz",
|
"_resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz",
|
||||||
"_spec": "8.3.2",
|
"_spec": "8.3.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"ava": {
|
"ava": {
|
||||||
"concurrency": 4
|
"concurrency": 4
|
||||||
},
|
},
|
||||||
|
|||||||
+12
-3
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"graceful-fs@4.2.2",
|
"graceful-fs@4.2.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "graceful-fs@4.2.2",
|
"_from": "graceful-fs@4.2.2",
|
||||||
@@ -22,11 +22,20 @@
|
|||||||
"fetchSpec": "4.2.2"
|
"fetchSpec": "4.2.2"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/decompress"
|
"/@jest/core",
|
||||||
|
"/@jest/source-map",
|
||||||
|
"/@jest/transform",
|
||||||
|
"/decompress",
|
||||||
|
"/jest-haste-map",
|
||||||
|
"/jest-runner",
|
||||||
|
"/jest-runtime",
|
||||||
|
"/jest-util",
|
||||||
|
"/load-json-file",
|
||||||
|
"/write-file-atomic"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz",
|
"_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz",
|
||||||
"_spec": "4.2.2",
|
"_spec": "4.2.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/isaacs/node-graceful-fs/issues"
|
"url": "https://github.com/isaacs/node-graceful-fs/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"graceful-readlink@1.0.1",
|
"graceful-readlink@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "graceful-readlink@1.0.1",
|
"_from": "graceful-readlink@1.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "zhiyelee"
|
"name": "zhiyelee"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"has-symbol-support-x@1.4.2",
|
"has-symbol-support-x@1.4.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "has-symbol-support-x@1.4.2",
|
"_from": "has-symbol-support-x@1.4.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
|
"_resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
|
||||||
"_spec": "1.4.2",
|
"_spec": "1.4.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Graham Fairweather",
|
"name": "Graham Fairweather",
|
||||||
"email": "xotic750@gmail.com"
|
"email": "xotic750@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"has-to-string-tag-x@1.4.1",
|
"has-to-string-tag-x@1.4.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "has-to-string-tag-x@1.4.1",
|
"_from": "has-to-string-tag-x@1.4.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
|
"_resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
|
||||||
"_spec": "1.4.1",
|
"_spec": "1.4.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Graham Fairweather",
|
"name": "Graham Fairweather",
|
||||||
"email": "xotic750@gmail.com"
|
"email": "xotic750@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"http-cache-semantics@3.8.1",
|
"http-cache-semantics@3.8.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "http-cache-semantics@3.8.1",
|
"_from": "http-cache-semantics@3.8.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
|
"_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
|
||||||
"_spec": "3.8.1",
|
"_spec": "3.8.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kornel Lesiński",
|
"name": "Kornel Lesiński",
|
||||||
"email": "kornel@geekhood.net",
|
"email": "kornel@geekhood.net",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ieee754@1.1.13",
|
"ieee754@1.1.13",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ieee754@1.1.13",
|
"_from": "ieee754@1.1.13",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
|
"_resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
|
||||||
"_spec": "1.1.13",
|
"_spec": "1.1.13",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Feross Aboukhadijeh",
|
"name": "Feross Aboukhadijeh",
|
||||||
"email": "feross@feross.org",
|
"email": "feross@feross.org",
|
||||||
|
|||||||
+3
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"inherits@2.0.4",
|
"inherits@2.0.4",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "inherits@2.0.4",
|
"_from": "inherits@2.0.4",
|
||||||
@@ -23,11 +23,12 @@
|
|||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/from2",
|
"/from2",
|
||||||
|
"/glob",
|
||||||
"/readable-stream"
|
"/readable-stream"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
"_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
||||||
"_spec": "2.0.4",
|
"_spec": "2.0.4",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"browser": "./inherits_browser.js",
|
"browser": "./inherits_browser.js",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/isaacs/inherits/issues"
|
"url": "https://github.com/isaacs/inherits/issues"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ini@1.3.5",
|
"ini@1.3.5",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ini@1.3.5",
|
"_from": "ini@1.3.5",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
|
"_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
|
||||||
"_spec": "1.3.5",
|
"_spec": "1.3.5",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Isaac Z. Schlueter",
|
"name": "Isaac Z. Schlueter",
|
||||||
"email": "i@izs.me",
|
"email": "i@izs.me",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"into-stream@3.1.0",
|
"into-stream@3.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "into-stream@3.1.0",
|
"_from": "into-stream@3.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz",
|
||||||
"_spec": "3.1.0",
|
"_spec": "3.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-natural-number@4.0.1",
|
"is-natural-number@4.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-natural-number@4.0.1",
|
"_from": "is-natural-number@4.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
|
||||||
"_spec": "4.0.1",
|
"_spec": "4.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Shinnosuke Watanabe",
|
"name": "Shinnosuke Watanabe",
|
||||||
"url": "https://github.com/shinnn"
|
"url": "https://github.com/shinnn"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-object@1.0.1",
|
"is-object@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-object@1.0.1",
|
"_from": "is-object@1.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Raynos",
|
"name": "Raynos",
|
||||||
"email": "raynos2@gmail.com"
|
"email": "raynos2@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-plain-obj@1.1.0",
|
"is-plain-obj@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-plain-obj@1.1.0",
|
"_from": "is-plain-obj@1.1.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-retry-allowed@1.2.0",
|
"is-retry-allowed@1.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-retry-allowed@1.2.0",
|
"_from": "is-retry-allowed@1.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
|
||||||
"_spec": "1.2.0",
|
"_spec": "1.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Vsevolod Strukchinsky",
|
"name": "Vsevolod Strukchinsky",
|
||||||
"email": "floatdrop@gmail.com",
|
"email": "floatdrop@gmail.com",
|
||||||
|
|||||||
+4
-3
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-stream@1.1.0",
|
"is-stream@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-stream@1.1.0",
|
"_from": "is-stream@1.1.0",
|
||||||
@@ -24,11 +24,12 @@
|
|||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/decompress-tar",
|
"/decompress-tar",
|
||||||
"/decompress-tarbz2",
|
"/decompress-tarbz2",
|
||||||
"/decompress-targz"
|
"/decompress-targz",
|
||||||
|
"/execa"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+4
-3
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"isarray@1.0.0",
|
"isarray@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "isarray@1.0.0",
|
"_from": "isarray@1.0.0",
|
||||||
@@ -22,11 +22,12 @@
|
|||||||
"fetchSpec": "1.0.0"
|
"fetchSpec": "1.0.0"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/readable-stream"
|
"/readable-stream",
|
||||||
|
"/unset-value/has-value/isobject"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Julian Gruber",
|
"name": "Julian Gruber",
|
||||||
"email": "mail@juliangruber.com",
|
"email": "mail@juliangruber.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"isurl@1.0.0",
|
"isurl@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "isurl@1.0.0",
|
"_from": "isurl@1.0.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Steven Vachon",
|
"name": "Steven Vachon",
|
||||||
"email": "contact@svachon.com",
|
"email": "contact@svachon.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"json-buffer@3.0.0",
|
"json-buffer@3.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "json-buffer@3.0.0",
|
"_from": "json-buffer@3.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
|
||||||
"_spec": "3.0.0",
|
"_spec": "3.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Dominic Tarr",
|
"name": "Dominic Tarr",
|
||||||
"email": "dominic.tarr@gmail.com",
|
"email": "dominic.tarr@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"keyv@3.0.0",
|
"keyv@3.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "keyv@3.0.0",
|
"_from": "keyv@3.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz",
|
||||||
"_spec": "3.0.0",
|
"_spec": "3.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Luke Childs",
|
"name": "Luke Childs",
|
||||||
"email": "lukechilds123@gmail.com",
|
"email": "lukechilds123@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"lowercase-keys@1.0.1",
|
"lowercase-keys@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "lowercase-keys@1.0.1",
|
"_from": "lowercase-keys@1.0.1",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user