We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27492fd commit f427807Copy full SHA for f427807
.github/workflows/setup-release-candidate.yml
@@ -31,6 +31,12 @@ jobs:
31
run: |
32
echo "BRANCH_NAME=release/rc-$(date +%Y%m%d)" >> $GITHUB_OUTPUT
33
34
+ - name: Install dependencies
35
+ run: npm ci
36
+
37
+ - name: Generate license attribution
38
+ run: npm run scan-licenses
39
40
- name: Create RC Branch
41
env:
42
BRANCH_NAME: ${{ steps.branch-name.outputs.BRANCH_NAME }}
@@ -41,5 +47,9 @@ jobs:
47
# Create RC branch from specified commit
48
git checkout -b $BRANCH_NAME
43
49
50
+ # Add generated license files
51
+ git add LICENSE-THIRD-PARTY
52
+ git commit -m "Update third-party license attribution for $BRANCH_NAME"
53
44
54
# Push RC branch
45
55
git push origin $BRANCH_NAME
0 commit comments