Skip to content

Commit 0e8ec95

Browse files
committed
Fixing publish/split workflow
1 parent aa33676 commit 0e8ec95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/split.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Split Monorepo
7373
uses: "danharrin/monorepo-split-github-action@v2.3.0"
7474
with:
75-
github_token: ${{ secrets.SPLIT_TOKEN }} # PAT here
75+
github_token: ${{ secrets.SPLIT_TOKEN_2 }} # PAT here
7676
tag: ${{ github.ref_name }} # e.g. v1.2.3
7777
package_directory: ${{ matrix.package.local }}
7878
repository_organization: cognesy
@@ -84,9 +84,9 @@ jobs:
8484
- uses: softprops/action-gh-release@v2
8585
if: github.ref_type == 'tag'
8686
env:
87-
GITHUB_TOKEN: ${{ secrets.SPLIT_TOKEN }}
87+
GITHUB_TOKEN: ${{ secrets.SPLIT_TOKEN_2 }}
8888
with:
8989
repository: ${{ matrix.package.repo }} # target repo
9090
tag_name: ${{ github.ref_name }} # v1.2.3
9191
body_path: ${{ matrix.package.local }}/release_notes/${{ github.ref_name }}.md
92-
# token: ${{ secrets.SPLIT_TOKEN }} # PAT here
92+
token: ${{ secrets.SPLIT_TOKEN_2 }} # PAT here

0 commit comments

Comments
 (0)