File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5858
5959 # Calculated values
6060 - id : get-github-ref-name
61- run : echo "::set-output name= github-ref-name:: ${{ github.head_ref || github.ref_name }}"
61+ run : echo "github-ref-name= ${{ github.head_ref || github.ref_name }}" >> "$GITHUB_OUTPUT "
6262 shell : bash
6363 - uses : rlespinasse/slugify-value@v1.3.2
6464 with :
6767 prefix : ${{ inputs.prefix }}
6868 slug-maxlength : ${{ inputs.slug-maxlength }}
6969 - id : get-github-repository-owner-part
70- run : echo "::set-output name= github-repository-owner-part:: $(echo $GITHUB_REPOSITORY | cut -d/ -f1)"
70+ run : echo "github-repository-owner-part= $(echo $GITHUB_REPOSITORY | cut -d/ -f1)" >> "$GITHUB_OUTPUT "
7171 shell : bash
7272 - uses : rlespinasse/slugify-value@v1.3.2
7373 with :
7676 prefix : ${{ inputs.prefix }}
7777 slug-maxlength : ${{ inputs.slug-maxlength }}
7878 - id : get-github-repository-name-part
79- run : echo "::set-output name= github-repository-name-part:: $(echo $GITHUB_REPOSITORY | cut -d/ -f2)"
79+ run : echo "github-repository-name-part= $(echo $GITHUB_REPOSITORY | cut -d/ -f2)" >> "$GITHUB_OUTPUT "
8080 shell : bash
8181 - uses : rlespinasse/slugify-value@v1.3.2
8282 with :
Original file line number Diff line number Diff line change 3131 fi
3232fi
3333echo " ::debug ::Set PREFLIGHT_SHORT_LENGTH=$PREFLIGHT_SHORT_LENGTH "
34- echo " ::set-output name= PREFLIGHT_SHORT_LENGTH:: $PREFLIGHT_SHORT_LENGTH "
34+ echo " PREFLIGHT_SHORT_LENGTH= $PREFLIGHT_SHORT_LENGTH " >> " $GITHUB_OUTPUT "
You can’t perform that action at this time.
0 commit comments