Skip to content

Commit

Permalink
release: v1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mato533 committed Jun 19, 2023
1 parent 98abb2e commit 3338fac
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions .github/workflows/auto-release.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Release

on:
pull_request:
branches:
Expand Down Expand Up @@ -78,6 +80,29 @@ jobs:
- name: Publish
run: echo "NPM PUBLISH"
upload-coverage:
needs:
- prepare
- test

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile

- name: Run the coverage
run: |
echo "run coverage"
- name: Upload the coverage file
run: |
echo coverage
tag:
needs:
Expand Down Expand Up @@ -114,8 +139,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Pull the remote branch
run: git pull $(git remote show) ${{ github.ref_name }}
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Checkout the commit for pull request
run: git checkout ${{ github.event.pull_request.head.sha }}

- uses: actions/setup-node@v3
with:
node-version: "18.x"
Expand Down

0 comments on commit 3338fac

Please sign in to comment.