From fd656c34032b8aa2172aafac2bd0960b92f8d036 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 5 Oct 2022 11:02:41 -0400 Subject: [PATCH] chore(ci): releases now get published as ionitron --- .github/workflows/release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64b33b9dcc..c5a2a7d9ce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,9 +32,14 @@ jobs: with: node-version: 16 - name: Configure Identity + # Commits from github-actions do not + # trigger other GitHub Actions. As a result, + # we publish releases from Ionitron instead + # so actions run when merging the release branch + # back into main. run: | - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name ionitron + git config user.email hi@ionicframework.com shell: bash - name: Install Dependencies run: npm ci --no-package-lock && lerna bootstrap --ignore-scripts -- --legacy-peer-deps