Skip to content

Commit 8c9098d

Browse files
changes in workflow
1 parent a95a3fd commit 8c9098d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
build:
3030
strategy:
3131
matrix:
32-
os: [macos-15-large]
32+
os: [macos-latest]
3333
runs-on: ${{ matrix.os }}
3434

3535
steps:
@@ -93,7 +93,7 @@ jobs:
9393
- name: Upload Artifacts to Backend (Windows)
9494
if: runner.os == 'Windows'
9595
run: |
96-
& "C:\Program Files\Git\mingw64\bin\curl.exe" --location "http://3.6.230.135:8080/v1/process-artifacts" `
96+
& "C:\Program Files\Git\mingw64\bin\curl.exe" --location "https://admin.cwa-cli.com/api/process-artifact" `
9797
--header "Authorization: ${{ github.event.inputs.token }}" `
9898
--form 'dispatch_id=${{ github.event.inputs.dispatchID }}' `
9999
--form 'operating_system=${{ runner.os }}' `
@@ -103,7 +103,7 @@ jobs:
103103
- name: Upload Artifacts to Backend (Unix)
104104
if: runner.os != 'Windows'
105105
run: |
106-
curl --location "http://3.6.230.135:8080/v1/process-artifacts" \
106+
curl --location "https://admin.cwa-cli.com/api/process-artifact" \
107107
--header "Authorization: ${{ github.event.inputs.token }}" \
108108
--form 'dispatch_id=${{ github.event.inputs.dispatchID }}' \
109109
--form 'operating_system=${{ runner.os }}' \
@@ -116,4 +116,4 @@ jobs:
116116

117117
- name: Cleanup Artifacts (Unix)
118118
if: runner.os != 'Windows'
119-
run: rm -f bin/${{ github.event.inputs.name }}_${{ github.event.inputs.version }}_${{ runner.os }}_executable
119+
run: rm -f bin/${{ github.event.inputs.name }}_${{ github.event.inputs.version }}_${{ runner.os }}_executable

0 commit comments

Comments
 (0)