-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from awibox/development
README.md was updated
- Loading branch information
Showing
2 changed files
with
10 additions
and
10 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 |
---|---|---|
|
@@ -7,8 +7,8 @@ LABEL "com.github.actions.color"="yellow" | |
|
||
LABEL "repository"="https://github.com/awibox/deploy-to-github-pages-action" | ||
LABEL "homepage"="https://github.com/awibox/deploy-to-github-pages-action#readme" | ||
LABEL "maintainer"="Andrei Arkhipov <[email protected]>" | ||
LABEL "version"="1.1.1" | ||
LABEL "maintainer"="Andrei Arkhipov <[email protected]>" | ||
LABEL "version"="1.1.2" | ||
|
||
RUN apk add --no-cache git | ||
|
||
|
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [13.2.0] | ||
node-version: [14.2.0] | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: install, build, and test | ||
|
@@ -28,23 +28,23 @@ jobs: | |
env: | ||
CI: true | ||
- name: Deploy to production | ||
uses: awb-pw/[email protected].1 | ||
uses: awb-pw/[email protected].2 | ||
env: | ||
AUTHOR: awb-pw | ||
AUTHOR: awibox | ||
BUILD_PATH: public | ||
GITHUB_PAGE_NAME: awb-pw.github.io | ||
GITHUB_PAGE_NAME: awibox.github.io | ||
PA_TOKEN: ${{ secrets.PA_TOKEN }} | ||
USERNAME: awibox | ||
EMAIL: [email protected] | ||
EMAIL: [email protected] | ||
``` | ||
|
||
## Environment variables | ||
|Environment variable|Required|Description|Example| | ||
|--------------------|--------|-----------|-------| | ||
|`AUTHOR`|Required|Name of the repository owner|awb-pw| | ||
|`AUTHOR`|Required|Name of the repository owner|awibox| | ||
|`BUILD_PATH`|Required|The directory where the static is built| public | ||
|`GITHUB_PAGE_NAME`|Required|Name of the repository for GitHub Pages where the application will be collected|awb-pw.github.io| | ||
|`GITHUB_PAGE_NAME`|Required|Name of the repository for GitHub Pages where the application will be collected|awibox.github.io| | ||
|`PA_TOKEN`|Required|GitHub Private Access Token with editing rights for repo. You can create it using [GitHub Documentation](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line)|${{secrets.PA_TOKEN}}| | ||
|`USERNAME`|Optional|The GitHub username for commits.|awibox| | ||
|`EMAIL`|Optional|The email that is used for commits.|[email protected]| | ||
|`EMAIL`|Optional|The email that is used for commits.|[email protected]| | ||
|