Skip to content

Commit

Permalink
feat: Remove a file (#49)
Browse files Browse the repository at this point in the history
chore: Only run release pipeline job if it's the main branch.
  • Loading branch information
joeyguerra authored Oct 1, 2023
1 parent 1defbe0 commit 5b50b1a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ jobs:
- run: npm test
release:
needs: [build, test]
if: github.ref == 'refs/heads/main' && success()
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/*']
if: github.ref == 'refs/heads/main' && ${{ success() }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 5b50b1a

Please sign in to comment.