fix: add proposed changes

This commit is contained in:
Hiraku 2023-10-18 15:16:06 +02:00
parent ecc5ee18af
commit e7dcfa86ed
No known key found for this signature in database
GPG Key ID: 7F27028D288DD0B8
3 changed files with 19 additions and 1 deletions

View File

@ -217,6 +217,20 @@ Set check-last-commit-only to only read last commit's message (optional). Exampl
check-last-commit-only: 'true'
```
#### **custom-git-domain:**
Set a custom domain of the git instance (optional). This is only needed, when using self-hosted instances of GitHub or alternative git provider (e.g. Gitea).
Example:
```yaml
- name: 'Automated Version Bump'
uses: 'phips28/gh-action-bump-version@master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
custom-git-domain: 'github.com'
```
#### [DEPRECATED] **push:**
**DEPRECATED** Set false you want to avoid pushing the new version tag/package.json. Example:
```yaml

View File

@ -74,6 +74,10 @@ inputs:
description: 'Check only last commit message'
default: 'false'
required: false
custom-git-domain:
description: 'Set a custom domain of the git instance'
default: 'github.com'
required: false
push:
description: '[DEPRECATED] Set to false to skip pushing the new tag'
default: 'true'

View File

@ -240,7 +240,7 @@ const pkg = getPackageJson();
);
}
const remoteRepo = `https://${process.env.GITHUB_ACTOR}:${process.env.GITHUB_TOKEN}@${process.env.CUSTOM_GIT_URL || "github.com"}/${process.env.GITHUB_REPOSITORY}.git`;
const remoteRepo = `https://${process.env.GITHUB_ACTOR}:${process.env.GITHUB_TOKEN}@${process.env['INPUT_CUSTOM-GIT-DOMAIN'] || "github.com"}/${process.env.GITHUB_REPOSITORY}.git`;
if (process.env['INPUT_SKIP-TAG'] !== 'true') {
await runInWorkspace('git', ['tag', newVersion]);
if (process.env['INPUT_SKIP-PUSH'] !== 'true') {