|
1 |
| -name: automatic-release |
| 1 | +# name: automatic-release |
2 | 2 |
|
3 |
| -on: |
4 |
| - push: |
5 |
| - branches-ignore: |
6 |
| - - master |
| 3 | +# on: |
| 4 | +# push: |
| 5 | +# branches-ignore: |
| 6 | +# - master |
7 | 7 |
|
8 |
| -env: |
9 |
| - BOT_GH_TOKEN: ${{ secrets.BOT_GH_TOKEN }} |
10 |
| - VSCE_PAT: ${{ secrets.VSCE_PAT }} |
| 8 | +# env: |
| 9 | +# BOT_GH_TOKEN: ${{ secrets.BOT_GH_TOKEN }} |
| 10 | +# VSCE_PAT: ${{ secrets.VSCE_PAT }} |
11 | 11 |
|
12 |
| -jobs: |
13 |
| - prerelease: |
14 |
| - name: Create prerelease |
15 |
| - runs-on: ubuntu-latest |
16 |
| - steps: |
17 |
| - - uses: actions/checkout@v2 |
18 |
| - - name: Install Dependencies |
19 |
| - run: npm ci |
| 12 | +# jobs: |
| 13 | +# prerelease: |
| 14 | +# name: Create prerelease |
| 15 | +# runs-on: ubuntu-latest |
| 16 | +# steps: |
| 17 | +# - uses: actions/checkout@v2 |
| 18 | +# - name: Install Dependencies |
| 19 | +# run: npm ci |
20 | 20 |
|
21 |
| - - name: Setup GIT |
22 |
| - run: | |
23 |
| - git config --global user.email "[email protected]" |
24 |
| - git config --global user.name "GraphQL Bot" |
25 |
| - git remote add github "https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY.git" || true |
| 21 | +# - name: Setup GIT |
| 22 | +# run: | |
| 23 | +# git config --global user.email "[email protected]" |
| 24 | +# git config --global user.name "GraphQL Bot" |
| 25 | +# git remote add github "https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY.git" || true |
26 | 26 |
|
27 |
| - - name: Bump version |
28 |
| - id: bump |
29 |
| - run: | |
30 |
| - npm version patch -m "%s (prerelease)" |
| 27 | +# - name: Bump version |
| 28 | +# id: bump |
| 29 | +# run: | |
| 30 | +# npm version patch -m "%s (prerelease)" |
31 | 31 |
|
32 |
| - - name: VSCE Pre-Release Publish |
33 |
| - id: publish |
34 |
| - run: | |
35 |
| - ./node_modules/.bin/vsce publish --pre-release |
| 32 | +# - name: VSCE Pre-Release Publish |
| 33 | +# id: publish |
| 34 | +# run: | |
| 35 | +# ./node_modules/.bin/vsce publish --pre-release |
36 | 36 |
|
37 |
| - - name: Push to master |
38 |
| - run: | |
39 |
| - git push github HEAD:"${GITHUB_REF}" |
| 37 | +# - name: Push to master |
| 38 | +# run: | |
| 39 | +# git push github HEAD:"${GITHUB_REF}" |
0 commit comments