mirror of
https://github.com/gradle/wrapper-validation-action
synced 2024-11-23 17:22:01 +00:00
Updates for branch rename master -> main
This commit is contained in:
parent
8d49e559aa
commit
6a97dac3d4
4 changed files with 6 additions and 11 deletions
1
.github/workflows/check-dist.yml
vendored
1
.github/workflows/check-dist.yml
vendored
|
@ -9,7 +9,6 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -3,7 +3,7 @@ on: # rebuild any PRs and main branch changes
|
|||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
- 'releases/*'
|
||||
|
||||
jobs:
|
||||
|
|
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
|
@ -2,10 +2,10 @@ name: "CodeQL"
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ master ]
|
||||
branches: [ main ]
|
||||
schedule:
|
||||
- cron: '24 4 * * 6'
|
||||
|
||||
|
|
10
RELEASING.md
10
RELEASING.md
|
@ -1,15 +1,11 @@
|
|||
# Release
|
||||
|
||||
* starting on `master`
|
||||
* starting on `main`
|
||||
* `npm install`
|
||||
* `npm run all`
|
||||
* `git checkout releases/v1`
|
||||
* `git merge master`
|
||||
* `npm prune --production`
|
||||
* `git add -f node_modules`
|
||||
* if changed dependencies `git commit -m Dependencies && git push`
|
||||
* Commit and push any changes to the `dist` directory. Wait for CI.
|
||||
* `git tag v1.0.x && git push --tags` with the actual version number
|
||||
* `git tag --delete v1 && git push --delete origin v1 && git tag v1 && git push --tags`
|
||||
* `git tag -f -a v1 && git push -f --tags`
|
||||
* go to https://github.com/gradle/wrapper-validation-action/releases
|
||||
* edit and publish the now drafted `v1` release
|
||||
* create a new release from the new full version number `v1.0.x`, list the fixed issues and publish the release
|
||||
|
|
Loading…
Reference in a new issue