Skip to content

Commit

Permalink
Merge branch 'release/1.1.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Jan 16, 2021
2 parents db90f8c + fee9848 commit 3ec22b5
Show file tree
Hide file tree
Showing 10 changed files with 15,796 additions and 12,497 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/comment-run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Comment run"
on:
issue_comment:
types: [created, edited]

jobs:
comment-run:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
# 0 indicates all history
fetch-depth: 0
- uses: nwtgck/actions-comment-run@v1.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
allowed-associations: '["OWNER"]'
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@ name: "build-test"
on:
push:
pull_request:
types: [opened, synchronize]

jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- run: npm ci
- run: npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Create a simple Web site
run: mkdir -p deploy_dist && echo -e "<pre>$(date -u)\n$GITHUB_SHA\n$GITHUB_REF</pre>" > deploy_dist/index.html
- uses: ./
Expand Down
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# TODO: Remove because /dist/typescript should not be generated automatically
/dist/typescript
/dist/typescript1
/dist/typescript2
/dist/typescript3
/dist/typescript4
/dist/typescript5
/dist/typescript6
/dist/typescript7
/dist/typescript8
/dist/typescript9

# Dependency directory
node_modules
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.1.12] - 2021-01-16
### Changed
* Update dependencies

## [1.1.11] - 2020-09-22
### Changed
* Update dependencies
Expand Down Expand Up @@ -146,7 +150,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
* Deploy to Netlify
* Comment on GitHub PR

[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.1.11...HEAD
[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.1.12...HEAD
[1.1.12]: https://github.com/nwtgck/actions-netlify/compare/v1.1.11...v1.1.12
[1.1.11]: https://github.com/nwtgck/actions-netlify/compare/v1.1.10...v1.1.11
[1.1.10]: https://github.com/nwtgck/actions-netlify/compare/v1.1.9...v1.1.10
[1.1.9]: https://github.com/nwtgck/actions-netlify/compare/v1.1.8...v1.1.9
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ name: Build and Deploy to Netlify
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-18.04
Expand Down Expand Up @@ -48,7 +47,7 @@ jobs:
### Required inputs and env
- `publish-dir` (e.g. "dist", "_site")
- `NETLIFY_AUTH_TOKEN`: [Personal access tokens](https://app.netlify.com/user/applications#personal-access-tokens) > New access token
- `NETLIFY_SITE_ID`: team page > your site > Settings > Site details > Site information > API ID
- `NETLIFY_SITE_ID`: team page > your site > Settings > Site details > Site information > API ID
- NOTE: API ID is `NETLIFY_SITE_ID`.

### Optional inputs
Expand Down
25,033 changes: 14,180 additions & 10,853 deletions dist/index.js

Large diffs are not rendered by default.

82 changes: 78 additions & 4 deletions dist/thread.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
'use strict';
const fs = require('fs');
const crypto = require('crypto');
const {parentPort} = require('worker_threads');
module.exports =
/******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({

/***/ 896:
/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => {


const fs = __nccwpck_require__(747);
const crypto = __nccwpck_require__(417);
const {parentPort} = __nccwpck_require__(13);

const handlers = {
hashFile: (algorithm, filePath) => new Promise((resolve, reject) => {
Expand Down Expand Up @@ -55,3 +63,69 @@ parentPort.on('message', async message => {
parentPort.postMessage({id: message.id, error: newError});
}
});


/***/ }),

/***/ 417:
/***/ ((module) => {

module.exports = require("crypto");;

/***/ }),

/***/ 747:
/***/ ((module) => {

module.exports = require("fs");;

/***/ }),

/***/ 13:
/***/ ((module) => {

module.exports = require("worker_threads");;

/***/ })

/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __nccwpck_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(__webpack_module_cache__[moduleId]) {
/******/ return __webpack_module_cache__[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ var threw = true;
/******/ try {
/******/ __webpack_modules__[moduleId](module, module.exports, __nccwpck_require__);
/******/ threw = false;
/******/ } finally {
/******/ if(threw) delete __webpack_module_cache__[moduleId];
/******/ }
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat */
/******/
/******/ __nccwpck_require__.ab = __dirname + "/";/************************************************************************/
/******/ // module exports must be returned from runtime so entry inlining is disabled
/******/ // startup
/******/ // Load entry module and return exports
/******/ return __nccwpck_require__(896);
/******/ })()
;
Loading

4 comments on commit 3ec22b5

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.