Skip to content

Commit

Permalink
[Workflows] Update Upload Artifacts to V4 (Exiled-Team#2788)
Browse files Browse the repository at this point in the history
* Update main.yml

* Update programs.yml

* Update main.yml

* Update programs.yml
  • Loading branch information
xNexusACS authored Oct 26, 2024
1 parent f620d33 commit 4244325
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
Out-File -FilePath ${{ github.env }} -InputObject "PackageFile=$File" -Encoding utf-8 -Append
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Build Results
path: bin/Release

- name: Upload nuget package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.PackageFile }}
path: ${{ env.PackageFile }}
2 changes: 1 addition & 1 deletion .github/workflows/programs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: dotnet publish ${{ matrix.proj_name }} -r ${{ matrix.target }} -c release -o builds/${{ matrix.target }} --self-contained true

- name: Upload ${{ matrix.proj_name }}@${{ matrix.target }} build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.proj_name }}-${{ matrix.target }}
path: builds/${{ matrix.target }}

0 comments on commit 4244325

Please sign in to comment.