diff --git a/README.md b/README.md index 0bff3f4..7577a55 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Helm Publisher -A GitHub Action for publishing Helm charts with Github Pages. +A GitHub Action for publishing Helm charts with Codeberg/Github Pages. ## Usage @@ -10,7 +10,7 @@ Inputs: * `charts_url` The GitHub Pages URL, defaults to `https://.github.io/` * `owner` The GitHub user or org that owns this repository, defaults to the owner in `GITHUB_REPOSITORY` env var * `repository` The GitHub repository, defaults to the `GITHUB_REPOSITORY` env var -* `branch` The branch to publish charts, defaults to `gh-pages` +* `branch` The branch to publish charts, defaults to `pages` * `target_dir` The target directory to store the charts, defaults to `.` * `helm_version` The Helm CLI version, defaults to the latest release * `linting` Toggle Helm linting, can be disabled by setting it to `off` @@ -26,7 +26,7 @@ Inputs: ## Examples -Package and push all charts in `./charts` dir to `gh-pages` branch: +Package and push all charts in `./charts` dir to `pages` branch: ```yaml name: release @@ -40,12 +40,12 @@ jobs: steps: - uses: actions/checkout@v2 - name: Publish Helm charts - uses: stefanprodan/helm-gh-pages@master + uses: https://git.devthefuture.org/devthefuture/helm-pages.git@master with: token: ${{ secrets.GITHUB_TOKEN }} ``` -Package and push charts in `./chart` dir to `gh-pages` branch in a different repository: +Package and push charts in `./chart` dir to `pages` branch in a different repository: ```yaml name: release-chart @@ -59,19 +59,19 @@ jobs: steps: - uses: actions/checkout@v2 - name: Publish Helm chart - uses: stefanprodan/helm-gh-pages@master + uses: https://git.devthefuture.org/devthefuture/helm-pages.git@master with: token: ${{ secrets.BOT_GITHUB_TOKEN }} charts_dir: chart charts_url: https://charts.fluxcd.io owner: fluxcd repository: charts - branch: gh-pages + branch: pages target_dir: charts commit_username: johndoe commit_email: johndoe@example.com ``` -Package chart with specified chart & app versions and push all charts in `./charts` dir to `gh-pages` branch: +Package chart with specified chart & app versions and push all charts in `./charts` dir to `pages` branch: ```yaml name: release on: @@ -84,7 +84,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Publish Helm charts - uses: stefanprodan/helm-gh-pages@master + uses: https://git.devthefuture.org/devthefuture/helm-pages.git@master with: token: ${{ secrets.GITHUB_TOKEN }} app_version: 1.16.0 diff --git a/action.yml b/action.yml index fd691a5..14139a8 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: 'Helm Publisher' -description: 'A GitHub/Gitea/Forgejo Action for publishing Helm charts with Gh-Pages/Pages' +description: 'A Forgejo/Gitea/GitHub Action for publishing Helm charts with Codeberg/Github Pages' author: 'DevTheJo' branding: icon: 'command' @@ -12,16 +12,16 @@ inputs: description: "The charts directory, defaults to `charts`" required: false charts_url: - description: "The GitHub Pages URL, defaults to `https://.github.io/`" + description: "The Pages URL, defaults to `https://.codeberg.page/`" required: false owner: - description: "The GitHub user or org that owns this repository, defaults to `GITHUB_REPOSITORY`" + description: "The user or org that owns this repository, defaults to `GITHUB_REPOSITORY`" required: false repository: - description: "The GitHub repository name, defaults to `GITHUB_REPOSITORY`" + description: "The repository name, defaults to `GITHUB_REPOSITORY`" required: false branch: - description: "The branch to publish charts, defaults to `gh-pages`" + description: "The branch to publish charts, defaults to `pages`" required: false target_dir: description: "The target directory to store the charts, defaults to `.`" diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 9630a36..5052bce 100755 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -39,7 +39,7 @@ main() { fi if [[ -z "$BRANCH" ]]; then - BRANCH="gh-pages" + BRANCH="pages" fi if [[ -z "$TARGET_DIR" ]]; then