Skip to content

Commit

Permalink
ci: release fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Papirniy committed Feb 2, 2022
1 parent 6dc7368 commit 034c868
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- '!release'
pull_request:

env:
Expand Down Expand Up @@ -50,7 +49,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
pr:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
if: ${{ github.event_name == 'pull_request' && github.head_ref != 'release' }}
steps:
- uses: actions/checkout@v2
with:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ jobs:
- run: npx nx-cloud stop-all-agents

- run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > ~/.npmrc
- run: npm config set tag-version-prefix ''

- name: Publish packages
run: yarn --ignore-scripts release:current
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tatumio",
"version": "2.0.1-alpha.222",
"version": "2.0.1-alpha.223",
"license": "MIT",
"repository": "https://github.com/tatumio/tatum-js",
"scripts": {
Expand Down

0 comments on commit 034c868

Please sign in to comment.