Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
fix(ci): remove quotation marks from make args
Browse files Browse the repository at this point in the history
  • Loading branch information
Craftplacer committed Mar 17, 2023
1 parent 9e71da8 commit 3e15204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Provide build variables
id: build-variables
run: |
echo "MAKE_ARGS=\"RELEASE=TRUE SPLIT_PER_ABI=TRUE \"" >> $GITHUB_OUTPUT
echo "MAKE_ARGS=RELEASE=TRUE SPLIT_PER_ABI=TRUE" >> $GITHUB_OUTPUT
- name: Codecov
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: |
echo "WEEKLY_EPOCH=$(date +%s)" >> $GITHUB_OUTPUT
echo "BUILD_NAME=$(date +%Y-%U)" >> $GITHUB_OUTPUT
echo "MAKE_ARGS=\"WEEKLY_EPOCH=$(date +%s) RELEASE=TRUE SIGNED=TRUE SPLIT_PER_ABI=TRUE\"" >> $GITHUB_OUTPUT
echo "MAKE_ARGS=RELEASE=TRUE SIGNED=TRUE SPLIT_PER_ABI=TRUE WEEKLY_EPOCH=$(date +%s)" >> $GITHUB_OUTPUT
build-linux:
name: Build for Linux
Expand Down

0 comments on commit 3e15204

Please sign in to comment.