From 190787582cc0fc3dc7c698d212ef5f9a988d2f54 Mon Sep 17 00:00:00 2001 From: Michael G Mosca Date: Thu, 9 Dec 2021 15:35:32 -0500 Subject: [PATCH 1/3] ci: fix --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 82d491db..c887d174 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,7 +7,7 @@ name: Deploy and Publish on: push: - branches: [ master ] + branches: [ '**' ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -41,6 +41,6 @@ jobs: GH_TOKEN: ${{ secrets.GH_TOKEN }} GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npx semantic-release # --verbosity=DEBUG --dry-run + run: npx semantic-release --dry-run --branches gha_9926 From 31a372e52825abf0c8f83d03488f9cd290d980d9 Mon Sep 17 00:00:00 2001 From: Michael G Mosca Date: Thu, 9 Dec 2021 15:37:32 -0500 Subject: [PATCH 2/3] ci: fix --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c887d174..4ebb2a00 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 14 - name: Install Semantic Release dependencies run: | sudo apt-get install bumpversion From 43c155641eb2b47d8e62a65861ab651f68fc662b Mon Sep 17 00:00:00 2001 From: Michael G Mosca Date: Thu, 9 Dec 2021 15:41:19 -0500 Subject: [PATCH 3/3] ci: fix --- .github/workflows/deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4ebb2a00..7897a2eb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,7 +7,7 @@ name: Deploy and Publish on: push: - branches: [ '**' ] + branches: [ master ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -22,10 +22,12 @@ jobs: - uses: actions/checkout@v2 with: persist-credentials: false + - name: Setup Node.js uses: actions/setup-node@v1 with: node-version: 14 + - name: Install Semantic Release dependencies run: | sudo apt-get install bumpversion @@ -36,11 +38,12 @@ jobs: npm install -g @semantic-release/github npm install -g @semantic-release/commit-analyzer npm install -g @semantic-release/release-notes-generator + - name: Publish to Git Releases and Tags env: GH_TOKEN: ${{ secrets.GH_TOKEN }} GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npx semantic-release --dry-run --branches gha_9926 + run: npx semantic-release # --verbosity=DEBUG --dry-run