Wolfram Language Paclet Repository

Community-contributed installable additions to the Wolfram Language

Primary Navigation

    • Cloud & Deployment
    • Core Language & Structure
    • Data Manipulation & Analysis
    • Engineering Data & Computation
    • External Interfaces & Connections
    • Financial Data & Computation
    • Geographic Data & Computation
    • Geometry
    • Graphs & Networks
    • Higher Mathematical Computation
    • Images
    • Knowledge Representation & Natural Language
    • Machine Learning
    • Notebook Documents & Presentation
    • Scientific and Medical Data & Computation
    • Social, Cultural & Linguistic Data
    • Strings & Text
    • Symbolic & Numeric Computation
    • System Operation & Setup
    • Time-Related Computation
    • User Interface Construction
    • Visualization & Graphics
    • Random Paclet
    • Alphabetical List
  • Using Paclets
    • Get Started
    • Download Definition Notebook
  • Learn More about Wolfram Language

PacletCICD

Tutorials

  • GitHub Actions Quick Start

Guides

  • Continuous Integration and Deployment
  • Custom CI/CD Workflows
  • Workflows

Tech Notes

  • License Entitlements and Repository Secrets

Symbols

  • BuildPaclet
  • CheckPaclet
  • CreatePublisherToken
  • ExampleDirectory
  • GitHubSecret
  • PublisherTokenObject
  • SubmitPaclet
  • WorkflowEvaluate
  • WorkflowExport
  • WorkflowJob
  • WorkflowJobQ
  • Workflow
  • WorkflowQ
  • WorkflowStep
  • WorkflowStepQ
  • WorkflowValue

Other

  • ResourcePublisherToken
  • WolframScriptEntitlementID
Wolfram`PacletCICD`
WorkflowStep
​
WorkflowStep
["name"]
represents a step with the given name in a
WorkflowJob
.
​
​
WorkflowStep
[…]
represents a step with the given parameters.
​
​
WorkflowStep
[workflow,…]
merges the given parameters with those of
workflow
.
​
Examples  
(11)
Basic Examples  
(6)
Load the PacletCICD package:
In[1]:=
Needs["Wolfram`PacletCICD`"];
​
Get a named workflow step:
In[1]:=
step=
WorkflowStep
["Checkout"]
Out[1]=
WorkflowStep
Name: Checkout
Action:
actions/checkout

Get the full data for the step:
In[2]:=
step["Data"]
Out[2]=
nameCheckout,idcheckout-code-step,usesactions/checkout@v2
View the corresponding YAML string:
In[3]:=
step["YAML"]
Out[3]=
name: Checkoutid: checkout-code-stepuses: actions/checkout@v2
​
Create a custom workflow step:
In[1]:=
step=
WorkflowStep
​​"name""Hello-World",​​"run""wolframscript -code 'Print[hello]'",​​Environment​​"WOLFRAMSCRIPT_ENTITLEMENTID"
GitHubSecret
["WOLFRAMSCRIPT_ENTITLEMENTID"]​​​​
Out[1]=
WorkflowStep
Name: Hello-World
Code:
Print[hello]

In[2]:=
step["YAML"]
Out[2]=
name: Hello-Worldrun: wolframscript -code 'Print[hello]'env: WOLFRAMSCRIPT_ENTITLEMENTID: ${{ secrets.WOLFRAMSCRIPT_ENTITLEMENTID }}
​
Create a custom step using a GitHub action:
In[1]:=
step=
WorkflowStep
[​​"name""Hello-World",​​"uses""actions/hello-world-docker-action@main",​​"with""who-to-greet""'Mona the Octocat'"​​]
Out[1]=
WorkflowStep
Name: Hello-World
Action:
actions/hello-world-docker-action

In[2]:=
step["YAML"]
Out[2]=
name: Hello-Worlduses: actions/hello-world-docker-action@mainwith: who-to-greet: 'Mona the Octocat'
​
Create a step that runs a script:
In[1]:=
job=
WorkflowStep
[File["Scripts/MyWorkflow.wls"]]
Out[1]=
WorkflowStep
Name: MyWorkflow
Command: wolframscript Scripts/MyWorkflow.wls

​
Combine a list of steps into a
WorkflowJob
:
In[1]:=
WorkflowJob
​​
WorkflowStep
["Checkout"],​​
WorkflowStep
[File["Scripts/FirstStep.wls"]],​​
WorkflowStep
[File["Scripts/SecondStep.wls"]]​​
Out[1]=
WorkflowJob
Name: UntitledJob
Steps: 3
Data:
name
UntitledJob
runs-on
ubuntu-latest
container
…
env
…
steps
name
Checkout
id
checkout-code-step
uses
actions/checkout@v2
name
FirstStep
run
wolframscript Scripts/FirstStep.wls
name
SecondStep
run
wolframscript Scripts/SecondStep.wls

Scope  
(1)

Generalizations & Extensions  
(1)

Options  
(3)

SeeAlso
Workflow
 
▪
WorkflowJob
 
▪
WorkflowExport
TechNotes
▪
License Entitlements and Repository Secrets
RelatedGuides
▪
Continuous Integration and Deployment
▪
Workflows
RelatedLinks
▪
Workflow syntax for GitHub Actions - GitHub Docs
""

© 2025 Wolfram. All rights reserved.

  • Legal & Privacy Policy
  • Contact Us
  • WolframAlpha.com
  • WolframCloud.com