1f82f7df93
Adds support for the following environment variables: - `https_proxy` - `HTTPS_PROXY` - `http_proxy` - `HTTP_PROXY` - `no_proxy` - `NO_PROXY`
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
// @ts-check
|
|
|
|
import core from "@actions/core";
|
|
|
|
import { post } from "./lib/post.js";
|
|
import request from "./lib/request.js";
|
|
|
|
post(core, request).catch((error) => {
|
|
/* c8 ignore next 3 */
|
|
console.error(error);
|
|
core.setFailed(error.message);
|
|
});
|