We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6341a5 commit de31a6eCopy full SHA for de31a6e
.github/workflows/ci.yml
@@ -46,3 +46,20 @@ jobs:
46
47
- name: Build package
48
run: yarn prepack
49
+ release:
50
+ runs-on: ubuntu-latest
51
+ if: github.ref == 'refs/heads/master'
52
+ steps:
53
+ - name: Checkout
54
+ uses: actions/checkout@v3
55
+ with:
56
+ fetch-depth: 0
57
+ - name: Setup
58
+ uses: ./.github/actions/setup
59
+ - name: git config
60
+ run: |
61
+ git config user.name "${GITHUB_ACTOR}"
62
+ git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
63
+ - run: yarn release
64
+ env:
65
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments