Skip to content

Commit

Permalink
chore: wip manual-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Sep 7, 2020
1 parent fc62ba8 commit 5b75bc1
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/manual-release.yml
Expand Up @@ -12,9 +12,13 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
# Check out the branch that was specified as part of the trigger
ref: ${{ github.ref }}
# We need to fetch all tags and branches
fetch-depth: 0

- run: git log -n 3

- name: Verify head of master hasn't changed
run: |
# We ensure that the latest commit on master is still the one we expected when
Expand All @@ -38,8 +42,15 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies (and run build)
run: yarn --frozen-lockfile
- name: Install dependencies
run: |
yarn --ignore-engines --frozen-lockfile --ignore-scripts
yarn lerna:init
yarn check:clean-workspace-after-install
- name: Run build
run: |
yarn build
- name: (WIP) Determine what version to release
run: npx lerna version --loglevel=silly --conventional-commits --exact
Expand Down

0 comments on commit 5b75bc1

Please sign in to comment.