From 389e484d6d23744e2f0c7930fbac865d39b8311e Mon Sep 17 00:00:00 2001 From: JamesIves Date: Sat, 22 Feb 2020 09:23:41 -0500 Subject: [PATCH] Mo --- .github/workflows/build.yml | 2 ++ .github/workflows/integration.yml | 2 ++ .github/workflows/publish.yml | 5 ++++- package.json | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6128aea..f5333f09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,6 +7,8 @@ on: push: branches: - dev + tags-ignore: + - '*.*' jobs: unit-tests: runs-on: ubuntu-latest diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 361728ce..c7ab10b4 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -3,6 +3,8 @@ on: schedule: - cron: 10 15 * * 0-6 push: + tags-ignore: + - '*.*' branches: - dev - releases/v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ca018d36..8167fa07 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,10 @@ jobs: with: node-version: 12 registry-url: https://registry.npmjs.org/ - - run: npm version patch + - run: + git config user.email "iam@jamesiv.es" + git config user.name "James Ives" + - run: npm version patch -m "Release %s" - run: npm ci - run: npm publish env: diff --git a/package.json b/package.json index e0345d6b..e3b0b4b7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "github-pages-deploy-action", "description": "GitHub action for building a project and deploying it to GitHub pages.", - "version": "3.2.2", + "version": "3.2.3", "main": "lib/main.js", "scripts": { "build": "tsc",