Skip to content

Commit

Permalink
ci: update GitHub Actions workflow
Browse files Browse the repository at this point in the history
- Remove VERCEL environment variables
- Add git configuration steps
  • Loading branch information
Isaac Martinez committed Jan 22, 2024
1 parent a8be58a commit c7541e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
name: Release
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
Expand Down Expand Up @@ -41,7 +38,10 @@ jobs:
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Install dependencies
run: pnpm install
- name: Build
Expand Down

0 comments on commit c7541e4

Please sign in to comment.