Skip to content

Commit

Permalink
Remove CLI build and fix server artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-senechal committed Oct 30, 2024
1 parent 8d74803 commit 9a41ed2
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,6 @@ jobs:
echo "PRODUCTION=true" >> $GITHUB_ENV
fi
- name: Build CLI
shell: bash
run: task build:cli
env:
OS: ${{ matrix.target }}
ARCH: ${{ matrix.arch }}

- name: Rename CLI artifact
run: mv build/deweb-cli${{ matrix.ext }} build/deweb-cli_${{ matrix.target }}_${{ matrix.arch }}${{ matrix.ext }}

- name: Upload CLI artifact
uses: actions/upload-artifact@v4
with:
name: deweb-cli_${{ matrix.target }}_${{ matrix.arch }}
path: build/deweb-cli_${{ matrix.target }}_${{ matrix.arch }}${{ matrix.ext }}

- name: Build Server
shell: bash
run: task build:server
Expand All @@ -91,4 +75,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: deweb-server_${{ matrix.target }}_${{ matrix.arch }}
path: build/deweb-server_${{ matrix.target }}_${{ matrix.arch }}${{ matrix.ext }}
path: server/build/deweb-server_${{ matrix.target }}_${{ matrix.arch }}${{ matrix.ext }}

0 comments on commit 9a41ed2

Please sign in to comment.