Skip to content

Commit

Permalink
🚀 Deploy new version [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
pabio-escobar committed Jan 24, 2021
1 parent 1fc23cc commit 4f7ad72
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 28 deletions.
1 change: 1 addition & 0 deletions dist/helpers/constants.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ export declare const SUMMARY_CI_SCHEDULE = "0 0 * * *";
export declare const UPDATE_TEMPLATE_CI_SCHEDULE = "0 0 * * *";
export declare const UPDATES_CI_SCHEDULE = "0 3 * * *";
export declare const UPTIME_CI_SCHEDULE = "*/5 * * * *";
export declare const DEFAULT_RUNNER = "ubuntu-18.04";
3 changes: 2 additions & 1 deletion dist/helpers/constants.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/helpers/constants.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions dist/helpers/workflows.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/helpers/workflows.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 19 additions & 16 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11020,12 +11020,11 @@ module.exports = Object.keys || function keys(O) {
/***/ 356:
/***/ (function(module) {

function stringify (obj, options = {}) {
const EOL = options.EOL || '\n'
function stringify (obj, { EOL = '\n', finalEOL = true, replacer = null, spaces } = {}) {
const EOF = finalEOL ? EOL : ''
const str = JSON.stringify(obj, replacer, spaces)

const str = JSON.stringify(obj, options ? options.replacer : null, options.spaces)

return str.replace(/\n/g, EOL) + EOL
return str.replace(/\n/g, EOL) + EOF
}

function stripBom (content) {
Expand Down Expand Up @@ -68838,7 +68837,7 @@ on:
jobs:
release:
name: Generate graphs
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
Expand Down Expand Up @@ -68869,7 +68868,7 @@ on:
jobs:
release:
name: Check status
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
Expand Down Expand Up @@ -68902,7 +68901,7 @@ on:
jobs:
release:
name: Setup Upptime
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
Expand Down Expand Up @@ -68962,7 +68961,7 @@ on:
jobs:
release:
name: Build and deploy site
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
Expand Down Expand Up @@ -68999,7 +68998,7 @@ on:
jobs:
release:
name: Generate README
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
Expand Down Expand Up @@ -69038,7 +69037,7 @@ on:
jobs:
release:
name: Build
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
Expand Down Expand Up @@ -69069,7 +69068,7 @@ on:
jobs:
release:
name: Deploy updates
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
Expand Down Expand Up @@ -69098,7 +69097,7 @@ on:
jobs:
release:
name: Check status
runs-on: ubuntu-18.04
runs-on: ${config.runner || constants_1.DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
Expand Down Expand Up @@ -70393,14 +70392,15 @@ var index = module.exports.index = Object.freeze(
"use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.UPTIME_CI_SCHEDULE = exports.UPDATES_CI_SCHEDULE = exports.UPDATE_TEMPLATE_CI_SCHEDULE = exports.SUMMARY_CI_SCHEDULE = exports.STATIC_SITE_CI_SCHEDULE = exports.RESPONSE_TIME_CI_SCHEDULE = exports.GRAPHS_CI_SCHEDULE = void 0;
exports.DEFAULT_RUNNER = exports.UPTIME_CI_SCHEDULE = exports.UPDATES_CI_SCHEDULE = exports.UPDATE_TEMPLATE_CI_SCHEDULE = exports.SUMMARY_CI_SCHEDULE = exports.STATIC_SITE_CI_SCHEDULE = exports.RESPONSE_TIME_CI_SCHEDULE = exports.GRAPHS_CI_SCHEDULE = void 0;
exports.GRAPHS_CI_SCHEDULE = "0 0 * * *";
exports.RESPONSE_TIME_CI_SCHEDULE = "0 23 * * *";
exports.STATIC_SITE_CI_SCHEDULE = "0 1 * * *";
exports.SUMMARY_CI_SCHEDULE = "0 0 * * *";
exports.UPDATE_TEMPLATE_CI_SCHEDULE = "0 0 * * *";
exports.UPDATES_CI_SCHEDULE = "0 3 * * *";
exports.UPTIME_CI_SCHEDULE = "*/5 * * * *";
exports.DEFAULT_RUNNER = "ubuntu-18.04";
//# sourceMappingURL=constants.js.map

/***/ }),
Expand Down Expand Up @@ -133802,9 +133802,10 @@ exports.fromCallback = function (fn) {
if (typeof args[args.length - 1] === 'function') fn.apply(this, args)
else {
return new Promise((resolve, reject) => {
fn.apply(
fn.call(
this,
args.concat([(err, res) => err ? reject(err) : resolve(res)])
...args,
(err, res) => (err != null) ? reject(err) : resolve(res)
)
})
}
Expand Down Expand Up @@ -218994,6 +218995,7 @@ const api = [
'readlink',
'realpath',
'rename',
'rm',
'rmdir',
'stat',
'symlink',
Expand All @@ -219004,6 +219006,7 @@ const api = [
].filter(key => {
// Some commands are not available on some systems. Ex:
// fs.opendir was added in Node.js v12.12.0
// fs.rm was added in Node.js v14.14.0
// fs.lchown is not available on at least some Linux
return typeof fs[key] === 'function'
})
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/interfaces.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export interface UpptimeConfig {
updates?: string;
uptime?: string;
};
runner?: string;
}
export interface SiteHistory {
url: string;
Expand Down

0 comments on commit 4f7ad72

Please sign in to comment.