Skip to content

Commit 83625e7

Browse files
committed
??
1 parent 26bb954 commit 83625e7

File tree

1 file changed

+16
-47
lines changed

1 file changed

+16
-47
lines changed

.github/workflows/pr.yml

Lines changed: 16 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -7,52 +7,21 @@ on:
77

88
jobs:
99
release:
10-
runs-on: ubuntu-latest
11-
steps:
12-
- name: Checkout repository
13-
uses: actions/checkout@v2
14-
15-
- name: Run release workflow
16-
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main
17-
with:
18-
npmTag: alpha
19-
buildScript: build
20-
nodeVersion: 18
21-
packageManager: pnpm
22-
env:
23-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
25-
26-
- name: Debug Paths
27-
run: |
28-
echo "Working Directory: $PWD"
29-
ls -la
30-
# Add more commands here to debug paths as needed
31-
# For example:
32-
# echo "Contents of specific directory:"
33-
# ls -la path/to/directory
10+
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main
11+
with:
12+
npmTag: alpha
13+
buildScript: build
14+
nodeVersion: 20
15+
packageManager: pnpm
16+
secrets:
17+
githubToken: ${{ secrets.GITHUB_TOKEN }}
18+
npmToken: ${{ secrets.NPM_TOKEN }}
3419

3520
dependencies:
36-
runs-on: ubuntu-latest
37-
steps:
38-
- name: Checkout repository
39-
uses: actions/checkout@v2
40-
41-
- name: Install dependencies using changesets workflow
42-
uses: the-guild-org/shared-config/.github/workflows/changesets-dependencies.yaml@main
43-
with:
44-
installDependencies: true
45-
packageManager: pnpm
46-
nodeVersion: 18
47-
48-
- name: Debug Paths
49-
run: |
50-
echo "Working Directory: $PWD"
51-
ls -la
52-
# Add more commands here to debug paths as needed
53-
# For example:
54-
# echo "Contents of specific directory:"
55-
# ls -la path/to/directory
56-
57-
env:
58-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
uses: the-guild-org/shared-config/.github/workflows/changesets-dependencies.yaml@main
22+
secrets:
23+
githubToken: ${{ secrets.GITHUB_TOKEN }}
24+
with:
25+
installDependencies: true
26+
packageManager: pnpm
27+
nodeVersion: 20

0 commit comments

Comments
 (0)