-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 1.05 KB
/
Harbor.yml
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
name: Harbor
on:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
jobs:
Harbor:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: get harbor
run: |
wget https://github.com/goharbor/harbor/releases/download/v2.11.1/harbor-offline-installer-v2.11.1.tgz
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: harbor-offline-installer
path: harbor-offline-installer-v2.11.1.tgz
Graylog:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build project
run: |
docker pull ghcr.io/aquasecurity/trivy-db:2
docker save -o trivy-db_2.tar.gz ghcr.io/aquasecurity/trivy-db:2
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: trivy-db_2
path: trivy-db_2.tar.gz