We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbeab4b commit 82e24daCopy full SHA for 82e24da
.github/workflows/ci.yml
@@ -6,7 +6,7 @@ on:
6
- v*
7
push:
8
branches:
9
- - master
+ - main
10
pull_request:
11
12
jobs:
@@ -22,7 +22,7 @@ jobs:
22
git config --global user.name "CI"
23
./mill __.checkStyle + __[0.12.0].test + __.docJar + __.publishLocal
24
- name: Publish
25
- if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v') || github.event_name == 'release'
+ if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || github.event_name == 'release'
26
run: |
27
echo "${{secrets.pgp_secret_key}}" > private.key
28
gpg --batch --yes --import private.key
0 commit comments