|
1 | | -name: Automated Deployment |
2 | | -'on': |
3 | | - push: |
4 | | - branches: |
5 | | - - master |
6 | | -jobs: |
7 | | - about: |
8 | | - runs-on: ubuntu-latest |
9 | | - steps: |
10 | | - - name: Checkout |
11 | | - uses: actions/checkout@v2 |
12 | | - - name: Jaid/action-sync-node-meta |
13 | | - |
14 | | - with: |
15 | | - direction: overwrite-github |
16 | | - githubToken: '${{ secrets.GITHUB }}' |
17 | | - release: |
18 | | - runs-on: ubuntu-latest |
19 | | - steps: |
20 | | - - name: Checkout |
21 | | - uses: actions/checkout@v3 |
22 | | - - name: Semantic Release |
23 | | - uses: cycjimmy/semantic-release-action@v3 |
24 | | - id: semantic |
25 | | - with: |
26 | | - extra_plugins: | |
27 | | - @semantic-release/changelog |
28 | | - @semantic-release/git |
29 | | - @semantic-release/github |
30 | | - env: |
31 | | - GITHUB_TOKEN: '${{ secrets.GITHUB }}' |
32 | | - NPM_TOKEN: '${{ secrets.NPM_TOKEN }}' |
33 | | - outputs: |
34 | | - new_release_published: '${{ steps.semantic.outputs.new_release_published }}' |
35 | | - new_release_version: '${{ steps.semantic.outputs.new_release_version }}' |
36 | | - |
37 | | - docs: |
38 | | - runs-on: ubuntu-latest |
39 | | - steps: |
40 | | - - name: Checkout |
41 | | - uses: actions/checkout@v2 |
42 | | - - name: update documentation |
43 | | - uses: CoCreate-app/CoCreate-docs@master |
| 1 | +name: Automated Deployment |
| 2 | +'on': |
| 3 | + push: |
| 4 | + branches: |
| 5 | + - master |
| 6 | +jobs: |
| 7 | + about: |
| 8 | + runs-on: ubuntu-latest |
| 9 | + steps: |
| 10 | + - name: Checkout |
| 11 | + uses: actions/checkout@v2 |
| 12 | + - name: Jaid/action-sync-node-meta |
| 13 | + |
| 14 | + with: |
| 15 | + direction: overwrite-github |
| 16 | + githubToken: '${{ secrets.GITHUB }}' |
| 17 | + release: |
| 18 | + runs-on: ubuntu-latest |
| 19 | + steps: |
| 20 | + - name: Checkout |
| 21 | + uses: actions/checkout@v3 |
| 22 | + - name: Semantic Release |
| 23 | + uses: cycjimmy/semantic-release-action@v3 |
| 24 | + id: semantic |
| 25 | + with: |
| 26 | + extra_plugins: | |
| 27 | + @semantic-release/changelog |
| 28 | + @semantic-release/git |
| 29 | + @semantic-release/github |
| 30 | + env: |
| 31 | + GITHUB_TOKEN: '${{ secrets.GITHUB }}' |
| 32 | + NPM_TOKEN: '${{ secrets.NPM_TOKEN }}' |
| 33 | + outputs: |
| 34 | + new_release_published: '${{ steps.semantic.outputs.new_release_published }}' |
| 35 | + new_release_version: '${{ steps.semantic.outputs.new_release_version }}' |
| 36 | + |
| 37 | + docs: |
| 38 | + runs-on: ubuntu-latest |
| 39 | + steps: |
| 40 | + - name: Checkout |
| 41 | + uses: actions/checkout@v2 |
| 42 | + - name: update documentation |
| 43 | + uses: CoCreate-app/CoCreate-docs@master |
0 commit comments