Skip to content

Commit 6a20c23

Browse files
authored
Merge pull request #19445 from emberjs/fixup-alpha-publishing
2 parents 70b73fd + 36dce72 commit 6a20c23

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/alpha-releases.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Alpha Releases
22

33
on:
44
schedule:
5-
- cron: '0 20 * * 1' # weekly (Monday)
5+
- cron: '0 20 * * 3' # weekly (Wednesday)
66

77
jobs:
88
test:
@@ -45,6 +45,10 @@ jobs:
4545
key: ci-modules-${{ hashFiles('**/yarn.lock') }}
4646
- name: install dependencies
4747
run: yarn install --frozen-lockfile --non-interactive
48+
- name: setup git
49+
run: |
50+
git config --local user.email '[email protected]'
51+
git config --local user.name 'Ember.js Alpha Releaser'
4852
- name: tag the next alpha
4953
run: npm version prerelease --preid alpha
5054
- name: build for publish

0 commit comments

Comments
 (0)