Skip to content

Commit ad4d098

Browse files
committed
minor #3174 [CI] Adapt Release on NPM workflow for 3.x (Kocal)
This PR was merged into the 3.x branch. Discussion ---------- [CI] Adapt `Release on NPM` workflow for 3.x | Q | A | -------------- | --- | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- if yes, also update UPGRADE-*.md and src/**/CHANGELOG.md --> | Documentation? | no <!-- required for new features, or documentation updates --> | Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT <!-- Replace this notice by a description of your feature/bugfix. This will help reviewers and should be a good start for the documentation. Additionally (see https://symfony.com/releases): - Always add tests and ensure they pass. - For new features, provide some code snippets to help understand usage. - Features and deprecations must be submitted against branch main. - Update/add documentation as required (we can help!) - Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry - Never break backward compatibility (see https://symfony.com/bc). --> Close #2760 Commits ------- d21ab7b [CI] Adapt `Release on NPM` workflow for 3.x
2 parents 10ccecc + d21ab7b commit ad4d098

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-on-npm.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release on NPM
33
on:
44
push:
55
tags:
6-
- 'v2.*.*'
6+
- 'v3.*.*'
77

88
permissions:
99
id-token: write # Required for OIDC
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
with:
18-
ref: 2.x
18+
ref: 3.x
1919

2020
- name: Configure Git
2121
run: |
@@ -56,4 +56,4 @@ jobs:
5656
- name: Push changes
5757
env:
5858
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59-
run: git push origin 2.x
59+
run: git push origin 3.x

0 commit comments

Comments
 (0)