|
7 | 7 |
|
8 | 8 | jobs:
|
9 | 9 | 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 }} |
34 | 19 |
|
35 | 20 | 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