Skip to content

Commit

Permalink
ci: use VIBE_GITHUB_TOKEN (#2114)
Browse files Browse the repository at this point in the history
  • Loading branch information
YossiSaadi authored May 26, 2024
1 parent 5f9c0a4 commit a27a431
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/git-creds/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ runs:
- name: Set up git credentials
shell: bash
run: |
git config --global user.name 'ci'
git config --global user.email 'deploy@monday.com'
git config --global user.name 'vibe-bot'
git config --global user.email 'vibe@monday.com'
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.VIBE_GITHUB_TOKEN }}
- name: Run Setup
uses: ./.github/actions/setup
with:
Expand All @@ -42,6 +43,8 @@ jobs:
run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > .npmrc
- name: Publish to npm
run: yarn lerna publish from-package -y
env:
GH_TOKEN: ${{ secrets.VIBE_GITHUB_TOKEN }}
- name: Remove .npmrc
if: steps.setup-npmrc.outcome == 'success'
run: rm .npmrc

0 comments on commit a27a431

Please sign in to comment.