-
-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
80 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
yarn test | ||
- name: Uploade CodeCov Report | ||
uses: codecov/[email protected].0 | ||
uses: codecov/[email protected].1 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ jobs: | |
git-config-email: [email protected] | ||
repository-name: MontezumaIves/lab | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
commit-message: 'Test commit' | ||
folder: integration | ||
single-commit: true | ||
clean: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: 'Deploy to GitHub Pages' | |
description: 'This action will handle the deployment process of your project to GitHub Pages.' | ||
author: 'James Ives <[email protected]>' | ||
runs: | ||
using: 'node12' | ||
using: 'node16' | ||
main: 'lib/main.js' | ||
branding: | ||
icon: 'git-commit' | ||
|
@@ -24,7 +24,7 @@ inputs: | |
However if you need more permissions for things such as deploying to another repository, you can add a Personal Access Token (PAT) here. | ||
This should be stored in the `secrets / with` menu **as a secret**. | ||
We recommend using a service account with the least permissions neccersary | ||
We recommend using a service account with the least permissions necessary | ||
and when generating a new PAT that you select the least permission scopes required. | ||
[Learn more about creating and using encrypted secrets here.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets) | ||
|
@@ -58,7 +58,7 @@ inputs: | |
required: false | ||
|
||
dry-run: | ||
description: 'Do not actually push back, but use `--dry-run` on `git push` invocations insead.' | ||
description: 'Do not actually push back, but use `--dry-run` on `git push` invocations instead.' | ||
required: false | ||
|
||
force: | ||
|
@@ -78,10 +78,6 @@ inputs: | |
description: 'Allows you to specify a different repository path so long as you have permissions to push to it. This should be formatted like so: JamesIves/github-pages-deploy-action' | ||
required: false | ||
|
||
workspace: | ||
description: "This should point to where your project lives on the virtual machine. The GitHub Actions environment will set this for you. It is only neccersary to set this variable if you're using the node module." | ||
required: false | ||
|
||
tag: | ||
description: "Add a tag to the commit, this can be used like so: 'v0.1'. Only works when 'dry-run' is not used." | ||
required: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@jamesives/github-pages-deploy-action", | ||
"description": "GitHub action for building a project and deploying it to GitHub pages.", | ||
"author": "James Ives <[email protected]> (https://jamesiv.es)", | ||
"version": "4.3.4", | ||
"version": "4.4.0", | ||
"license": "MIT", | ||
"main": "lib/lib.js", | ||
"types": "lib/lib.d.ts", | ||
|
@@ -35,25 +35,25 @@ | |
"deployment" | ||
], | ||
"dependencies": { | ||
"@actions/core": "1.9.0", | ||
"@actions/core": "1.10.0", | ||
"@actions/exec": "1.1.1", | ||
"@actions/github": "5.0.3", | ||
"@actions/github": "5.1.1", | ||
"@actions/io": "1.1.2" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "27.5.0", | ||
"@types/node": "18.0.6", | ||
"@types/node": "18.8.0", | ||
"@typescript-eslint/eslint-plugin": "4.33.0", | ||
"@typescript-eslint/parser": "4.33.0", | ||
"eslint": "7.32.0", | ||
"eslint-config-prettier": "8.5.0", | ||
"eslint-plugin-jest": "26.5.3", | ||
"eslint-plugin-jest": "27.0.4", | ||
"eslint-plugin-prettier": "4.2.1", | ||
"jest": "26.6.3", | ||
"jest-circus": "27.5.1", | ||
"prettier": "2.7.1", | ||
"rimraf": "3.0.2", | ||
"ts-jest": "26.5.6", | ||
"typescript": "4.7.4" | ||
"typescript": "4.8.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.