Skip to content

Commit

Permalink
chore(CI): Upload Nuget Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kruplm authored Mar 19, 2024
1 parent 406b460 commit 1bc6a16
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
dotnet-version: [ '6.0.x' ]
node-version: [ '18.x' ]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.node-version }}
COMPOSEUI_SKIP_DOWNLOAD: ${{env.COMPOSEUI_SKIP_DOWNLOAD}}
Expand Down Expand Up @@ -69,15 +69,19 @@ jobs:


- name: Pack .NET
run: |
run: |
powershell ./build/dotnet-pack.ps1
# By uploading it's shared with the other workflows that are reusing this
- name: Upload Nuget Packages
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: packages
path: ${{ github.workspace }}/packages

# By uploading it's shared with the other workflows that are reusing this
- name: Upload Shell Binaries
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: shell-binaries
path: ${{ github.workspace }}/src/shell/dotnet/Shell/bin/Release/net6.0-windows/
with:
name: packages
path: ${{ github.workspace }}/packages

0 comments on commit 1bc6a16

Please sign in to comment.