File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Snapshot Build
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ # branches: [ main, 5.0.x, 4.5.x, 'issue/**' ]
7+ branches : [ 'issue/actions' ]
8+
9+ permissions : read-all
10+
11+ jobs :
12+ build-snapshots :
13+ name : Build and deploy snapshots
14+ if : ${{ github.repository_owner == 'spring-projects' }}
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v6
18+ - name : Setup Java and Maven
19+ uses : spring-projects/spring-data-release/actions/setup-maven@main
20+ with :
21+ develocity-access-key : ' ${{ secrets.DEVELOCITY_ACCESS_KEY }}'
22+ - name : Deploy to Artifactory
23+ uses : spring-projects/spring-data-release/actions/maven-artifactory-deploy@main
24+ with :
25+ build-name : ' spring-data-rest'
26+ username : ' ${{ secrets.ARTIFACTORY_USERNAME }}'
27+ password : ' ${{ secrets.ARTIFACTORY_PASSWORD }}'
You can’t perform that action at this time.
0 commit comments