Skip to content

Commit

Permalink
ci(lib): comment lib workflow for now
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohr committed Aug 10, 2023
1 parent bca1d3d commit 3c78028
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
cache: 'npm'
- run: npm ci

- name: Build library and increment version tag (only on merge)
if: github.event_name != 'pull_request'
shell: bash
run: |
npm run build:lib:prod
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "chore(lib): npm run build:lib:prod"
npm version patch
git push
git push --tags
# - name: Build library and increment version tag (only on merge)
# if: github.event_name != 'pull_request'
# shell: bash
# run: |
# npm run build:lib:prod
# git config user.name github-actions
# git config user.email github-actions@github.com
# git add .
# git commit -m "chore(lib): npm run build:lib:prod"
# npm version patch
# git push
# git push --tags

- name: Get branch name (merge)
if: github.event_name != 'pull_request'
Expand Down

0 comments on commit 3c78028

Please sign in to comment.