Updating r6 from main@v6.0.0

This commit is contained in:
Patrick Lehmann
2025-09-24 15:42:36 +02:00
130 changed files with 9639 additions and 2679 deletions

15
doc/Action/Actions.rst Normal file
View File

@@ -0,0 +1,15 @@
.. grid:: 2
.. grid-item::
:columns: 2
.. rubric:: Post-Processing
* :ref:`ACTION/WithPostStep`
.. grid-item::
:columns: 2
.. rubric:: Deprecated
* :ref:`ACTION/Releaser`

View File

@@ -1,8 +1,17 @@
.. _ACTION/Releaser:
.. index::
single: GitHub Action; Releaser
Releaser
########
.. attention::
The **Releaser** action is deprecated.
Use the new GitHub Action workflow template :ref:`JOBTMPL/PublishReleaseNotes` as a replacement with lots of
additional features.
**Releaser** is a Docker GitHub Action written in Python.
**Releaser** allows to keep a GitHub Release of type pre-release and its artifacts up to date with latest builds.

View File

@@ -1,4 +1,6 @@
.. _ACTION/WithPostStep:
.. index::
single: GitHub Action; WithPostStep
with-post-step
##############

View File

@@ -1,7 +1,31 @@
.. _ACTION:
.. index::
single: GitHub Action
Overview
########
The following 2 actions are provided by **Actions**:
* :ref:`ACTION/Releaser`
* :ref:`ACTION/WithPostStep`
.. include:: Actions.rst
.. _ACTION/Instantiation:
.. index::
single: GitHub Action; Instantiation
Instantiation
*************
.. code-block:: yaml
jobs:
<JobName>:
steps:
- ...
- name: <Name>
uses: ./with-post-step
with:
<Param1>: <Value1>
<Param2>: <Value2>