-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: streamline STORE_PATH assignment in workflow
- Loading branch information
1 parent
6c1e1c0
commit 498fd6a
Showing
1 changed file
with
3 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,8 @@ jobs: | |
- name: Get pnpm store directory | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
STORE_PATH=$(pnpm store path --silent) | ||
echo "STORE_PATH=$STORE_PATH" >> $GITHUB_ENV | ||
- name: Setup pnpm cache | ||
uses: actions/cache@v4 | ||
|
@@ -51,12 +52,4 @@ jobs: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | ||
SECRET_KEY: ${{ secrets.SECRET_KEY }} | ||
CLIENT_ID: ${{ secrets.CLIENT_ID }} | ||
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | ||
|
||
# - name: Commit coverage badge | ||
# run: | | ||
# git config --local user.email "[email protected]" | ||
# git config --local user.name "GitHub Action" | ||
# git add README.md | ||
# git commit -m "Update coverage badge" -a | ||
# git push | ||
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} |