Skip to content

Commit

Permalink
chore: update workflows config.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed May 6, 2022
1 parent 9ff49a6 commit 0204f98
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,51 +67,51 @@ jobs:
- run: cp -rp core/dist/*js website/build
- run: cp -rp core/dist/*css website/build

- name: Is a tag created auto?
id: create_tag
uses: jaywcjlove/create-tag-action@v1.3.6
with:
package-path: ./core/package.json

- name: get tag version
id: tag_version
uses: jaywcjlove/changelog-generator@v1.5.0

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/build

- name: Generate Changelog
id: changelog
uses: jaywcjlove/changelog-generator@v1.5.0
if: steps.create_tag.outputs.successful
with:
head-ref: ${{ steps.create_tag.outputs.version }}
filter-author: (小弟调调™|Renovate Bot|renovate-bot)
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'

- name: Create Release
uses: ncipollo/release-action@v1
if: steps.create_tag.outputs.successful
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ steps.changelog.outputs.tag }}
tag: ${{ steps.changelog.outputs.tag }}
body: |
Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/uiwjs/react-codemirror/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html
Comparing Changes: ${{ steps.changelog.outputs.compareurl }}
# - name: Is a tag created auto?
# id: create_tag
# uses: jaywcjlove/create-tag-action@v1.3.6
# with:
# package-path: ./core/package.json

# - name: get tag version
# id: tag_version
# uses: jaywcjlove/changelog-generator@v1.5.0

# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }}
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./website/build

# - name: Generate Changelog
# id: changelog
# uses: jaywcjlove/changelog-generator@v1.5.0
# if: steps.create_tag.outputs.successful
# with:
# head-ref: ${{ steps.create_tag.outputs.version }}
# filter-author: (小弟调调™|Renovate Bot|renovate-bot)
# filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'

# - name: Create Release
# uses: ncipollo/release-action@v1
# if: steps.create_tag.outputs.successful
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# name: ${{ steps.changelog.outputs.tag }}
# tag: ${{ steps.changelog.outputs.tag }}
# body: |
# Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/uiwjs/react-codemirror/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html
# Comparing Changes: ${{ steps.changelog.outputs.compareurl }}

${{ steps.changelog.outputs.changelog }}
# ${{ steps.changelog.outputs.changelog }}

# - run: git status
# - run: npm install @jsdevtools/npm-publish -g
# - run: npm-publish --token="${{ secrets.NPM_TOKEN }}" ./core/package.json
# # - run: git status
# # - run: npm install @jsdevtools/npm-publish -g
# # - run: npm-publish --token="${{ secrets.NPM_TOKEN }}" ./core/package.json

- name: 📦 @uiw/react-layout publish to NPM
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./core/package.json
# - name: 📦 @uiw/react-layout publish to NPM
# uses: JS-DevTools/npm-publish@v1
# with:
# token: ${{ secrets.NPM_TOKEN }}
# package: ./core/package.json

0 comments on commit 0204f98

Please sign in to comment.