Skip to content

Commit

Permalink
fix: remove semantic release action
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiter committed Jun 6, 2023
1 parent 7535d9a commit 2a6868a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Expand Up @@ -46,22 +46,22 @@ jobs:
- name: Build package
run: npm run build

- name: Npm Run Test
run: npm run test
# - name: Npm Run Test
# run: npm run test

- name: Deploy on develop branch
if: github.ref == 'refs/heads/develop'
uses: codfish/semantic-release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.SECRET_NAME }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

- name: Deploy on master branch
if: github.ref == 'refs/heads/master'
uses: codfish/semantic-release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.SECRET_NAME }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

- name: Merge master into develop
if: github.ref == 'refs/heads/master'
Expand Down

0 comments on commit 2a6868a

Please sign in to comment.