mirror of
https://github.com/jlengrand/jreleaser.github.io.git
synced 2026-03-10 08:31:25 +00:00
Document tag skipping
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,4 +10,3 @@ target/
|
|||||||
.project
|
.project
|
||||||
tmp/
|
tmp/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
local-playbook.yml
|
|
||||||
|
|||||||
11
README.adoc
Normal file
11
README.adoc
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
= JReleaser Website
|
||||||
|
|
||||||
|
* Install link:https://antora.org/[Antora].
|
||||||
|
|
||||||
|
* Generate the site
|
||||||
|
[source,sh]
|
||||||
|
----
|
||||||
|
$ antora local-playbook.yml
|
||||||
|
----
|
||||||
|
|
||||||
|
* Browse to `build/site/index.html`.
|
||||||
@@ -5,9 +5,9 @@ site:
|
|||||||
|
|
||||||
content:
|
content:
|
||||||
sources:
|
sources:
|
||||||
- url: https://github.com/jreleaser/jreleaser.github.io.git
|
- url: https://github.com/jreleaser/jreleaser.github.io.git
|
||||||
branches: main
|
branches: main
|
||||||
start_path: docs
|
start_path: docs
|
||||||
|
|
||||||
ui:
|
ui:
|
||||||
bundle:
|
bundle:
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ release:
|
|||||||
# [optional]
|
# [optional]
|
||||||
allowUploadToExisting: true
|
allowUploadToExisting: true
|
||||||
|
|
||||||
|
# Skips creating a tag.
|
||||||
|
# Useful when the tag was created externally.
|
||||||
|
# [optional]
|
||||||
|
skipTagging: false
|
||||||
|
|
||||||
# The GitHub API endpoint to use.
|
# The GitHub API endpoint to use.
|
||||||
# Update it if using GitHub Enterprise.
|
# Update it if using GitHub Enterprise.
|
||||||
# Defaults to `pass:[https://api.github.com]`.
|
# Defaults to `pass:[https://api.github.com]`.
|
||||||
@@ -204,6 +209,11 @@ JSON::
|
|||||||
// [optional]
|
// [optional]
|
||||||
"allowUploadToExisting": true,
|
"allowUploadToExisting": true,
|
||||||
|
|
||||||
|
// Skips creating a tag.
|
||||||
|
// Useful when the tag was created externally.
|
||||||
|
// [optional]
|
||||||
|
"skipTagging": false,
|
||||||
|
|
||||||
// The GitHub API endpoint to use.
|
// The GitHub API endpoint to use.
|
||||||
// Update it if using GitHub Enterprise.
|
// Update it if using GitHub Enterprise.
|
||||||
// Defaults to `pass:[https://api.github.com]`.
|
// Defaults to `pass:[https://api.github.com]`.
|
||||||
@@ -376,6 +386,13 @@ Maven::
|
|||||||
-->
|
-->
|
||||||
<allowUploadToExisting>true</allowUploadToExisting>
|
<allowUploadToExisting>true</allowUploadToExisting>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Skips creating a tag.
|
||||||
|
Useful when the tag was created externally.
|
||||||
|
[optional]
|
||||||
|
-->
|
||||||
|
<skipTagging>false</skipTagging>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
The GitHub API endpoint to use.
|
The GitHub API endpoint to use.
|
||||||
Update it if using GitHub Enterprise.
|
Update it if using GitHub Enterprise.
|
||||||
@@ -552,6 +569,11 @@ jreleaser {
|
|||||||
// [optional]
|
// [optional]
|
||||||
allowUploadToExisting = true
|
allowUploadToExisting = true
|
||||||
|
|
||||||
|
// Skips creating a tag.
|
||||||
|
// Useful when the tag was created externally.
|
||||||
|
// [optional]
|
||||||
|
skipTagging = false
|
||||||
|
|
||||||
// The GitHub API endpoint to use.
|
// The GitHub API endpoint to use.
|
||||||
// Update it if using GitHub Enterprise.
|
// Update it if using GitHub Enterprise.
|
||||||
// Defaults to `pass:[https://api.github.com]`.
|
// Defaults to `pass:[https://api.github.com]`.
|
||||||
|
|||||||
19
local-playbook.yml
Normal file
19
local-playbook.yml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
site:
|
||||||
|
title: JReleaser
|
||||||
|
url: https://jreleaser.org
|
||||||
|
start_page: guide::index.adoc
|
||||||
|
|
||||||
|
content:
|
||||||
|
sources:
|
||||||
|
- url: ./
|
||||||
|
branches: main
|
||||||
|
start_path: docs
|
||||||
|
|
||||||
|
ui:
|
||||||
|
bundle:
|
||||||
|
url: ui-bundle.zip
|
||||||
|
supplemental_files: './supplemental_ui'
|
||||||
|
|
||||||
|
asciidoc:
|
||||||
|
extensions:
|
||||||
|
- ./extensions/tabs-block/extension
|
||||||
Reference in New Issue
Block a user