-
Notifications
You must be signed in to change notification settings - Fork 26
52 lines (43 loc) · 1.31 KB
/
docker-publish.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
48
49
50
51
52
name: Docker
on:
pull_request:
branches:
- main
push:
tags:
- v*
env:
DOCKER_IMAGE_NAME: rundeck-exporter
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build Docker image
run: make docker-build
- name: Run Trivy vulnerability scanner
if: ${{ github.event_name == 'pull_request' }}
uses: aquasecurity/[email protected]
with:
image-ref: '${{ env.DOCKER_IMAGE_NAME }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
- name: Publish Docker image
if: ${{ github.event_name != 'pull_request' }}
env:
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')
# Push docker image:latest if no alfa or beta is set in the version tag.
if [[ ! "$VERSION" =~ (alfa|beta) ]]; then
VERSION=latest make push-all
fi
make push-all