Skip to content

Commit d914bdd

Browse files
committed
3.5.8 Changes
1 parent 5eb7bd3 commit d914bdd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1059
-797
lines changed

lib/git.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
88
step((generator = generator.apply(thisArg, _arguments || [])).next());
99
});
1010
};
11+
var __importDefault = (this && this.__importDefault) || function (mod) {
12+
return (mod && mod.__esModule) ? mod : { "default": mod };
13+
};
1114
Object.defineProperty(exports, "__esModule", { value: true });
1215
exports.deploy = exports.generateBranch = exports.switchToBaseBranch = exports.init = void 0;
1316
const core_1 = require("@actions/core");
1417
const io_1 = require("@actions/io");
18+
const fs_1 = __importDefault(require("fs"));
1519
const constants_1 = require("./constants");
1620
const execute_1 = require("./execute");
1721
const util_1 = require("./util");
@@ -120,7 +124,9 @@ function deploy(action) {
120124
yield execute_1.execute(`rsync -q -av --checksum --progress ${action.folder}/. ${action.targetFolder
121125
? `${temporaryDeploymentDirectory}/${action.targetFolder}`
122126
: temporaryDeploymentDirectory} ${action.clean
123-
? `--delete ${excludes} --exclude CNAME --exclude .nojekyll`
127+
? `--delete ${excludes} ${!fs_1.default.existsSync(`${action.folder}/CNAME`) ? '--exclude CNAME' : ''} ${!fs_1.default.existsSync(`${action.folder}/.nojekyll`)
128+
? '--exclude .nojekyll'
129+
: ''}`
124130
: ''} --exclude .ssh --exclude .git --exclude .github ${action.folder === action.root
125131
? `--exclude ${temporaryDeploymentDirectory}`
126132
: ''}`, action.workspace, action.silent);

lib/lib.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ function run(configuration) {
2828
core_1.info(`
2929
GitHub Pages Deploy Action 🚀
3030
31-
✈️ Getting Started Guide: https://github.com/marketplace/actions/deploy-to-github-pages
31+
🚀 Getting Started Guide: https://github.com/marketplace/actions/deploy-to-github-pages
3232
❓ FAQ/Wiki: https://github.com/JamesIves/github-pages-deploy-action/wiki
3333
🔧 Support: https://github.com/JamesIves/github-pages-deploy-action/issues
3434
⭐ Contribute: https://github.com/JamesIves/github-pages-deploy-action/blob/dev/CONTRIBUTING.md
35-
36-
Maintained by James Ives (https://jamesiv.es)`);
35+
36+
📣 Maintained by James Ives (https://jamesiv.es)`);
3737
core_1.info('Checking configuration and starting deployment… 🚦');
3838
const settings = Object.assign(Object.assign({}, constants_1.action), configuration);
3939
// Defines the repository paths and token types.

node_modules/@types/jest/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/jest/index.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/jest/package.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/README.md

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/assert.d.ts

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/buffer.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/console.d.ts

+130
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/crypto.d.ts

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/dns.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/domain.d.ts

+14-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/events.d.ts

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/fs.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)