-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (70 loc) · 2.07 KB
/
build.yml
File metadata and controls
82 lines (70 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Build and Deploy
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
release:
types: [created]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get the code
uses: actions/checkout@v5
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: "21"
distribution: "temurin"
- name: Cache Maven dependencies
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn clean verify -B
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: eclipse-themes-updatesite
path: releng/com.github.eclipsethemes.updatesite/target/repository/
retention-days: 90
deploy-updatesite:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' || github.event_name == 'release'
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: eclipse-themes-updatesite
path: updatesite/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./updatesite
publish_branch: gh-pages
create-release:
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'release'
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: eclipse-themes-updatesite
path: updatesite/
- name: Create release archive
run: |
cd updatesite
zip -r ../eclipse-themes-updatesite-${{ github.event.release.tag_name }}.zip .
cd ..
- name: Upload release asset
uses: softprops/action-gh-release@v2
with:
files: eclipse-themes-updatesite-${{ github.event.release.tag_name }}.zip