Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetaure/artifactversion update #207

Merged
merged 2 commits into from
Sep 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ jobs:
dir $env:GITHUB_WORKSPACE\out\net8.0
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: buildoutput
path: ${{ github.workspace }}/out/net8.0

- name: Archive Build Log
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ success() || failure() }}
with:
name: Compile_Solution_log
Expand All @@ -84,7 +84,7 @@ jobs:
$env:GITHUB_WORKSPACE/*.binlog
- name: Archive Build Output
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: continuous-clearing
path: |
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Archive Build Output
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: continuous-clearing
path: |
Expand All @@ -133,7 +133,7 @@ jobs:
Write-Host "::set-output name=nupkg-LicenseClearingTool::continuous-clearing.7.0.0.nupkg"
- name: Archive NuGet Packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: nuget-continuous-clearing
path: |
Expand All @@ -153,7 +153,7 @@ jobs:
fetch-depth: 0

- name: Download Build Output
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: buildoutput
path: ${{ github.workspace }}/buildoutput
Expand All @@ -170,7 +170,7 @@ jobs:
- name: Archive docker image
#if: ${{ false }} # disable for now
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: docker-continuous-clearing
path: |
Expand All @@ -190,17 +190,17 @@ jobs:
fetch-depth: 0

- name: Download Build Output
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: continuous-clearing

- name: Download NuGet Package
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: nuget-continuous-clearing

- name: Download Docker image
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: docker-continuous-clearing

Expand Down
Loading