From a6add255a1861fac89f53e2c6058dd8fcd688076 Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Mon, 5 Sep 2022 06:03:03 +0000 Subject: [PATCH] feat: release new version BREAKING CHANGE: Updated all dependencies, including RxJS (v6 to v7). To be safe, this is a new major version --- .github/workflows/ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb3f3bc..6873efd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,7 @@ on: - master paths-ignore: - "*.md" + jobs: build_and_test: runs-on: ubuntu-latest @@ -36,12 +37,12 @@ jobs: package.json README.md dist - # - name: Release - # if: github.repository == 'timdeschryver/rx-query' && github.ref == 'refs/heads/master' && matrix.node-version == 16 - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - # run: npx semantic-release + - name: Release + if: github.repository == 'timdeschryver/rx-query' && github.ref == 'refs/heads/master' && matrix.node-version == 16 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: npx semantic-release # - name: deploy storybook to GH pages # if: github.repository == 'timdeschryver/rx-query' && github.ref == 'refs/heads/master' && matrix.node-version == 16 # run: npm run deploy-storybook -- --ci