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 f363350 commit c9ee824Copy full SHA for c9ee824
.github/workflows/beta.yml
@@ -0,0 +1,31 @@
1
+name: Publish package to GitHub Packages
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+jobs:
7
+ publish:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ actions: write
11
+ checks: write
12
+ contents: write
13
+ deployments: write
14
+ id-token: none
15
+ issues: write
16
+ packages: write
17
+ pages: write
18
+ pull-requests: write
19
+ repository-projects: write
20
+ security-events: write
21
+ statuses: write
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+ - uses: actions/setup-java@v4
25
+ with:
26
+ java-version: '21'
27
+ distribution: 'temurin'
28
+ - name: Publish package
29
+ run: mvn --batch-mode deploy
30
+ env:
31
+ GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }}
0 commit comments