Skip to content

Commit

Permalink
fix string in namespace file
Browse files Browse the repository at this point in the history
  • Loading branch information
domechn committed Jun 18, 2023
1 parent 5fa5d6a commit 9acfb14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: replace polybase namespace
run: |
mkdir -p src-tauri/configs
echo ${{ secrets.POLYBASE_NAMESPACE }} > src-tauri/configs/polybase.namespace
echo -n "${{ secrets.POLYBASE_NAMESPACE }}" > src-tauri/configs/polybase.namespace
- name: setup node
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: replace polybase namespace
run: |
mkdir -p src-tauri/configs
echo ${{ secrets.POLYBASE_NAMESPACE }} > src-tauri/configs/polybase.namespace
echo -n "${{ secrets.POLYBASE_NAMESPACE }}" > src-tauri/configs/polybase.namespace
- name: setup node
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 9acfb14

Please sign in to comment.