Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -360,31 +360,31 @@ jobs:
dotnet-version: "10.x"

- name: Download Agent (win-x86)
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Agent-win-x86
path: ControlR.Web.Server/wwwroot/downloads/win-x86/

- name: Download Agent (win-x64)
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Agent-win-x64
path: ControlR.Web.Server/wwwroot/downloads/win-x64/

- name: Download Agent (linux-x64)
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Agent-linux-x64
path: ControlR.Web.Server/wwwroot/downloads/linux-x64/

- name: Download Agent (macOS ARM64)
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Agent-macOS-ARM64
path: ControlR.Web.Server/wwwroot/downloads/osx-arm64/

- name: Download Agent (macOS x64)
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Agent-macOS-x64
path: ControlR.Web.Server/wwwroot/downloads/osx-x64/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ jobs:
GH_TOKEN: ${{ github.token }}

- name: Download Server Artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Server
path: ./server-publish
github-token: ${{ github.token }}
run-id: ${{ inputs.run_id || steps.get-run-id.outputs.run_id }}

- name: Download docker-compose file
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: DockerCompose
path: ./docker-compose-download
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
GH_TOKEN: ${{ github.token }}

- name: Download Server Artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: Server
path: ./server-publish
github-token: ${{ github.token }}
run-id: ${{ inputs.run_id || steps.get-run-id.outputs.run_id }}

- name: Download docker-compose file
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: DockerCompose
path: ./docker-compose-download
Expand Down