|
7 | 7 |
|
8 | 8 |
|
9 | 9 | jobs: |
10 | | - publish: |
11 | | - runs-on: ubuntu-latest |
12 | | - timeout-minutes: 5 |
13 | | - defaults: |
14 | | - run: |
15 | | - working-directory: ./ |
| 10 | + # publish: |
| 11 | + # runs-on: ubuntu-latest |
| 12 | + # timeout-minutes: 5 |
| 13 | + # defaults: |
| 14 | + # run: |
| 15 | + # working-directory: ./ |
16 | 16 |
|
17 | | - steps: |
18 | | - - uses: actions/checkout@v4 |
| 17 | + # steps: |
| 18 | + # - uses: actions/checkout@v4 |
19 | 19 |
|
20 | | - - name: Setup Node.js |
21 | | - uses: actions/setup-node@v4 |
22 | | - with: |
23 | | - node-version: '20' |
24 | | - registry-url: 'https://registry.npmjs.org' |
| 20 | + # - name: Setup Node.js |
| 21 | + # uses: actions/setup-node@v4 |
| 22 | + # with: |
| 23 | + # node-version: '20' |
| 24 | + # registry-url: 'https://registry.npmjs.org' |
25 | 25 |
|
26 | | - - name: Install dependencies |
27 | | - run: npm install |
| 26 | + # - name: Install dependencies |
| 27 | + # run: npm install |
28 | 28 |
|
29 | | - - name: Run publish command |
30 | | - id: publish |
31 | | - run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" --version+hash --tag github --version+tag --create-tag "test/" --llm-api-key "${{ secrets.LLM_API_KEY }}" |
| 29 | + # - name: Run publish command |
| 30 | + # id: publish |
| 31 | + # run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" --version+hash --tag github --version+tag --create-tag "test/" --llm-api-key "${{ secrets.LLM_API_KEY }}" |
32 | 32 |
|
33 | | - - name: Print output |
34 | | - run: | |
35 | | - echo "Package version: ${{ steps.publish.outputs.package-version }}" |
| 33 | + # - name: Print output |
| 34 | + # run: | |
| 35 | + # echo "Package version: ${{ steps.publish.outputs.package-version }}" |
36 | 36 |
|
37 | | - - name: Run publish without tag |
38 | | - run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" --version+hash |
| 37 | + # - name: Run publish without tag |
| 38 | + # run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" --version+hash |
39 | 39 |
|
40 | | - - name: Run publish without commit hash |
41 | | - run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" |
| 40 | + # - name: Run publish without commit hash |
| 41 | + # run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" |
42 | 42 |
|
43 | | - - name: Just add a tag |
44 | | - run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" --tag github-2 |
| 43 | + # - name: Just add a tag |
| 44 | + # run: npx . publish "./test" --webhook "${{ secrets.DISCORD_WEBHOOK_TEST_RELEASE }}" --access-token "${{ secrets.NPM_TOKEN }}" --tag github-2 |
45 | 45 |
|
46 | 46 | # OIDC-based publishing (Trusted Publishing) |
47 | 47 | # Requires: Trusted Publisher configured on npmjs.com for the package |
|
0 commit comments