Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

keep dev up to date #487

Merged
merged 6 commits into from
Sep 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
${{ runner.os }}-yarn-v1-
continue-on-error: true

# fixes permission issues on docker
- name: Chown workspace
run: chown -R $(whoami) .

- name: Install dependencies
run: yarn --prefer-offline --no-audit

Expand Down Expand Up @@ -75,7 +79,8 @@ jobs:
if: github.event_name == 'workflow_dispatch'
run: |
git reset --hard
yarn release:${{ github.event.inputs.version }} -- --ci
yarn release:${{ github.event.inputs.version }} --ci
yarn publish --non-interactive
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -91,9 +96,11 @@ jobs:

echo ${{ steps.extract-version.outputs.current-version }}
if echo ${{ steps.extract-version.outputs.current-version }} | grep -q "beta"; then
yarn release -- --ci --preRelease
yarn release --ci --preRelease
yarn publish --non-interactive
else
yarn release:patch -- --ci --preRelease=beta
yarn release:patch --ci --preRelease=beta
yarn publish --non-interactive
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"release": true
},
"npm": {
"publish": true
"publish": false
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synthetixio/synpress",
"version": "2.0.1",
"version": "2.0.2-beta.1",
"description": "Synpress in an wrapper around Cypress test runner which extends its capabilities with conjunction of Puppeteer. It's used used across Synthetix projects.",
"keywords": [
"Synpress",
Expand Down