Update step id naming

This commit is contained in:
IvanZosimov 2022-12-20 15:31:56 +01:00
parent aefe5b483f
commit 13abe4777e

View File

@ -114,11 +114,11 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup dotnet - name: Setup dotnet
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
id: cp310 id: stepid
with: with:
dotnet-version: ${{ matrix.dotnet }} dotnet-version: ${{ matrix.dotnet }}
- name: Create temporary global.json - name: Create temporary global.json
run: echo '{"sdk":{"version": "${{ steps.cp310.outputs.dotnet-version }}"}}' > ./global.json run: echo '{"sdk":{"version": "${{ steps.stepid.outputs.dotnet-version }}"}}' > ./global.json
- name: Execute dotnet - name: Execute dotnet
run: dotnet build <my project> run: dotnet build <my project>
``` ```
@ -178,10 +178,10 @@ In case of a single version installation, the `dotnet-version` output contains t
```yaml ```yaml
- uses: actions/setup-dotnet@v3 - uses: actions/setup-dotnet@v3
id: cp310 id: stepid
with: with:
dotnet-version: 3.1.422 dotnet-version: 3.1.422
- run: echo '${{ steps.cp310.outputs.dotnet-version }}' # outputs 3.1.422 - run: echo '${{ steps.stepid.outputs.dotnet-version }}' # outputs 3.1.422
``` ```
**Multiple version installation** **Multiple version installation**
@ -190,12 +190,12 @@ In case of a multiple version installation, the `dotnet-version` output contains
```yaml ```yaml
- uses: actions/setup-dotnet@v3 - uses: actions/setup-dotnet@v3
id: cp310 id: stepid
with: with:
dotnet-version: | dotnet-version: |
3.1.422 3.1.422
5.0.408 5.0.408
- run: echo '${{ steps.cp310.outputs.dotnet-version }}' # outputs 5.0.408 - run: echo '${{ steps.stepid.outputs.dotnet-version }}' # outputs 5.0.408
``` ```
**Installation from global.json** **Installation from global.json**
@ -203,13 +203,13 @@ When the `dotnet-version` input is used along with the `global-json-file` input,
```yaml ```yaml
- uses: actions/setup-dotnet@v3 - uses: actions/setup-dotnet@v3
id: cp310 id: stepid
with: with:
dotnet-version: | dotnet-version: |
3.1.422 3.1.422
5.0.408 5.0.408
global-json-file: "./global.json" # contains version 2.2.207 global-json-file: "./global.json" # contains version 2.2.207
- run: echo '${{ steps.cp310.outputs.dotnet-version }}' # outputs 2.2.207 - run: echo '${{ steps.stepid.outputs.dotnet-version }}' # outputs 2.2.207
``` ```
## Environment variables ## Environment variables