Difference between revisions of "$GITHUB OUTPUT"

From wikieduonline
Jump to navigation Jump to search
(Created page with " <pre> on: push jobs: generate-a-secret-output: runs-on: ubuntu-latest steps: - id: sets-a-secret name: Generate, mask, and output a secret ru...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
+
* https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions
  
 
<pre>
 
<pre>
Line 17: Line 17:
 
           echo "the secret number is ${{ steps.sets-a-secret.outputs.secret-number }}"
 
           echo "the secret number is ${{ steps.sets-a-secret.outputs.secret-number }}"
 
</pre>
 
</pre>
 +
 +
 +
== See also ==
 +
* {{GHA}}
 +
 +
[[Category:Git]]

Latest revision as of 14:58, 13 June 2024

on: push
jobs:
  generate-a-secret-output:
    runs-on: ubuntu-latest
    steps:
      - id: sets-a-secret
        name: Generate, mask, and output a secret
        run: |
          the_secret=$((RANDOM))
          echo "::add-mask::$the_secret"
          echo "secret-number=$the_secret" >> "$GITHUB_OUTPUT"
      - name: Use that secret output (protected by a mask)
        run: |
          echo "the secret number is ${{ steps.sets-a-secret.outputs.secret-number }}"


See also[edit]

Advertising: