Skip to content

Commit 8a06633

Browse files
author
Dylan Dietz
committed
chore: update release workflow to trigger on all branches and enhance release step naming
1 parent a64b5f1 commit 8a06633

2 files changed

Lines changed: 4 additions & 58 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI/CD
22

33
on:
44
push:
5-
branches: [main, beta, alpha]
5+
branches: ['**'] # Run on all branches
66
pull_request:
7-
branches: [main]
7+
branches: ['**'] # Run on all PRs
88

99
jobs:
1010
test:
@@ -46,7 +46,7 @@ jobs:
4646
path: coverage/
4747

4848
release:
49-
name: Release
49+
name: Release & Publish
5050
needs: test
5151
runs-on: ubuntu-latest
5252
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
@@ -80,7 +80,7 @@ jobs:
8080
- name: Verify build artifacts
8181
run: ls -la dist/
8282

83-
- name: Release
83+
- name: Release & Publish to npm
8484
env:
8585
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8686
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)