mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Updating r6 from main@v6.0.0
This commit is contained in:
15
doc/Action/Actions.rst
Normal file
15
doc/Action/Actions.rst
Normal 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`
|
||||
@@ -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.
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
.. _ACTION/WithPostStep:
|
||||
.. index::
|
||||
single: GitHub Action; WithPostStep
|
||||
|
||||
with-post-step
|
||||
##############
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user