Skip to content

Commit

Permalink
ci: fix indent and branch names (#2883)
Browse files Browse the repository at this point in the history
Co-authored-by: Eduardo San Martin Morote <[email protected]>
  • Loading branch information
jotolo and posva authored Jan 10, 2025
1 parent d405029 commit 40d883d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'packages/docs/**'
- 'packages/playground/**'
pull_request:
branches: v2
branches: [v2]
paths-ignore:
- 'packages/docs/**'
- 'packages/playground/**'
Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/pkg.pr.new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,40 @@ name: Publish Any Commit

on:
pull_request:
branches: v2
branches: [v2]
paths-ignore:
- 'packages/docs/**'
- 'packages/playground/**'
- 'packages/docs/**'
- 'packages/playground/**'

push:
branches:
- '**'
- '**'
tags:
- '!**'
- '!**'
paths-ignore:
- 'packages/docs/**'
- 'packages/playground/**'
- 'packages/docs/**'
- 'packages/playground/**'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm

- name: Install
run: pnpm install --frozen-lockfile
- name: Install
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm build
- name: Build
run: pnpm build

- name: Release
run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/*'
- name: Release
run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/*'

0 comments on commit 40d883d

Please sign in to comment.