We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
master
main
1 parent 06a6997 commit 116f202Copy full SHA for 116f202
.github/workflows/ci.yml
@@ -2,11 +2,11 @@ name: CI jobs
2
on:
3
push:
4
branches:
5
- - master
+ - main
6
- r[0-9]+.*
7
pull_request:
8
9
10
11
types: [opened, reopened, synchronize]
12
jobs:
@@ -24,7 +24,7 @@ jobs:
24
run: |
25
mvn compiler:compile -Pdev,jdk11 -B -U -e
26
- name: Deploy snapshot artifacts
27
- if: github.event_name == 'push' && contains(github.ref, 'master')
+ if: github.event_name == 'push' && contains(github.ref, 'main')
28
29
echo "<settings><servers><server><id>ossrh</id><username>${{ secrets.CI_DEPLOY_USERNAME }}</username><password>${{ secrets.CI_DEPLOY_PASSWORD }}</password></server></servers></settings>" > settings.xml
30
mvn deploy -B -U -e
0 commit comments