Skip to content

myci-actions/export-env-var-powershell

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

export-env-var-powershell

Step syntax:

- name: <name>
  uses: myci-actions/export-env-var-powershell@<version>
  with:
    name: <variable-name>
    value: <variable-value>

Arguments:

  • <variable-name> - Name of the variable to set.

  • <variable-value> - Variable value.

Step example:

- name: add path to PATH environment variable
  uses: myci-actions/export-env-var-powershell@1
  with:
    name: PATH
    value: $env:PATH;c:\some\path