From e01cba93c1816f4bee518aee0466ece5750300a7 Mon Sep 17 00:00:00 2001 From: Andrei Arkhipov Date: Sat, 25 Jan 2020 19:50:41 +0300 Subject: [PATCH] #20: path in the README.md was updated --- Dockerfile | 2 +- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8aea840..7b5cfce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ 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 " -LABEL "version"="1.1.0" +LABEL "version"="1.1.1" RUN apk add --no-cache git diff --git a/README.md b/README.md index adcb1e7..a5e2da5 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,11 @@ jobs: env: CI: true - name: Deploy to production - uses: awibox/deploy-to-github-pages-action@1.1.0 + uses: awb-pw/deploy-to-github-pages-action@1.1.1 env: - AUTHOR: awibox + AUTHOR: awb-pw BUILD_PATH: public - GITHUB_PAGE_NAME: awibox.github.io + GITHUB_PAGE_NAME: awb-pw.github.io PA_TOKEN: ${{ secrets.PA_TOKEN }} USERNAME: awibox EMAIL: andrei@awb.pw @@ -43,9 +43,9 @@ jobs: ## Environment variables |Environment variable|Required|Description|Example| |--------------------|--------|-----------|-------| -|`AUTHOR`|Required|Name of the repository owner|awibox| +|`AUTHOR`|Required|Name of the repository owner|awb-pw| |`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|awibox.github.io| +|`GITHUB_PAGE_NAME`|Required|Name of the repository for GitHub Pages where the application will be collected|awb-pw.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.|andrei@awb.pw|