Skip to content

Commit

Permalink
actions++
Browse files Browse the repository at this point in the history
  • Loading branch information
vpenades committed May 11, 2024
1 parent 9f23d14 commit 2c933d6
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/BuildPackages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,19 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
steps:

# --------------------------------------------- variables
# --------------------------------------------- DotNet SDK

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4

# --------------------------------------------- checkout repo

- name: Checkout
uses: actions/checkout@v4

# --------------------------------------------- variables

- name: Define SemVer suffix
run: |
Expand All @@ -48,16 +58,6 @@ jobs:
echo "SEMVERSUFFIX=$SEMVERSUFFIX" >> $GITHUB_ENV
echo ${{ env.SEMVERSUFFIX }}
# --------------------------------------------- DotNet SDK

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4

# --------------------------------------------- checkout repo

- name: Checkout
uses: actions/checkout@v4

# --------------------------------------------- build

- name: Install tools
Expand All @@ -67,7 +67,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build -c Release --version-suffix ${{ env.SEMVERSUFFIX }} --verbosity diagnostic
run: dotnet build -c Release --version-suffix ${{ env.SEMVERSUFFIX }}

- name: Pack
run: dotnet pack -c Release --no-build --output "."
Expand Down

0 comments on commit 2c933d6

Please sign in to comment.