-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (57 loc) · 2.17 KB
/
Copy pathci.yml
File metadata and controls
73 lines (57 loc) · 2.17 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
name: Gradle CI
on: [ push, pull_request ]
jobs:
gradleValidation:
name: Gradle Wrapper
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Fetch Sources
uses: actions/checkout@v2
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
build:
runs-on: ubuntu-latest
needs: gradleValidation
name: Build
steps:
- name: Fetch Sources
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 16
# Cache Gradle dependencies
- name: Setup Gradle Dependencies Cache
uses: actions/cache@v2.1.6
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }}
# Cache Gradle Wrapper
- name: Setup Gradle Wrapper Cache
uses: actions/cache@v2.1.6
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- name: Build with Gradle
run: ./gradlew installDist
build-docker-image:
runs-on: ubuntu-latest
needs: gradleValidation
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
name: Build Docker Image
steps:
- name: Fetch Sources
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
env:
DOCKER_USERNAME: nycodeghg
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: echo $DOCKER_PASSWORD | docker login ghcr.io --username $DOCKER_USERNAME --password-stdin
- name: Build & Tag
run: docker build -t ghcr.io/nycodeghg/malwarecheckbot:latest -t ghcr.io/nycodeghg/malwarecheckbot:"$GITHUB_SHA" .
- name: Push Image to GitHub Container Registry
run: docker push ghcr.io/nycodeghg/malwarecheckbot:latest
- name: Push Specific Image to GitHub Container Registry
run: docker push ghcr.io/nycodeghg/malwarecheckbot:"$GITHUB_SHA"