Skip to content

Commit d71c74e

Browse files
committed
chore: Add versioning workflow and update CI dependencies
This commit introduces a new workflow for versioning and updates dependencies within the existing CI workflow. The versioning workflow has been configured with necessary permissions, and the CI workflow now ensures that the build job waits for other jobs to complete before executing.
1 parent dbae30d commit d71c74e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ jobs:
6161

6262
build:
6363
runs-on: ubuntu-latest
64+
needs:
65+
- test-action
66+
- test-typescript
6467

6568
steps:
6669
- uses: actions/checkout@v5

.github/workflows/versioning.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
release:
55
types: [published, edited]
66

7+
permissions:
8+
contents: write
9+
710
jobs:
811
actions-tagger:
912
runs-on: windows-latest

0 commit comments

Comments
 (0)