forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
150 lines (134 loc) · 4.9 KB
/
image-reuse.yaml
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# name: Publish and Sign Container Image
# on:
# workflow_call:
# inputs:
# go-version:
# required: true
# type: string
# quay_image_name:
# required: false
# type: string
# ghcr_image_name:
# required: false
# type: string
# docker_image_name:
# required: false
# type: string
# platforms:
# required: true
# type: string
# default: linux/amd64
# push:
# required: true
# type: boolean
# default: false
# target:
# required: false
# type: string
# secrets:
# quay_username:
# required: false
# quay_password:
# required: false
# ghcr_username:
# required: false
# ghcr_password:
# required: false
# docker_username:
# required: false
# docker_password:
# required: false
# outputs:
# image-digest:
# description: "sha256 digest of container image"
# value: ${{ jobs.publish.outputs.image-digest }}
# permissions: {}
# jobs:
# publish:
# permissions:
# contents: read
# packages: write # Used to push images to `ghcr.io` if used.
# id-token: write # Needed to create an OIDC token for keyless signing
# runs-on: ubuntu-22.04
# outputs:
# image-digest: ${{ steps.image.outputs.digest }}
# steps:
# - name: Checkout code
# uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.3.0
# with:
# fetch-depth: 0
# token: ${{ secrets.GITHUB_TOKEN }}
# if: ${{ github.ref_type == 'tag'}}
# - name: Checkout code
# uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.3.0
# if: ${{ github.ref_type != 'tag'}}
# - name: Setup Golang
# uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
# - name: Install cosign
# uses: sigstore/cosign-installer@c3667d99424e7e6047999fb6246c0da843953c65 # v3.0.1
# with:
# cosign-release: 'v2.0.0'
# - uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2.1.0
# - uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c # v2.5.0
# - name: Setup tags for container image as a CSV type
# run: |
# IMAGE_TAGS=$(for str in \
# ${{ inputs.quay_image_name }} \
# ${{ inputs.ghcr_image_name }} \
# ${{ inputs.docker_image_name}}; do
# echo -n "${str}",;done | sed 's/,$//')
# echo $IMAGE_TAGS
# echo "TAGS=$IMAGE_TAGS" >> $GITHUB_ENV
# - name: Setup image namespace for signing, strip off the tag
# run: |
# TAGS=$(for tag in \
# ${{ inputs.quay_image_name }} \
# ${{ inputs.ghcr_image_name }} \
# ${{ inputs.docker_image_name}}; do
# echo -n "${tag}" | awk -F ":" '{print $1}' -;done)
# echo $TAGS
# echo 'SIGNING_TAGS<<EOF' >> $GITHUB_ENV
# echo $TAGS >> $GITHUB_ENV
# echo 'EOF' >> $GITHUB_ENV
# - name: Login to Quay.io
# uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
# with:
# registry: quay.io
# username: ${{ secrets.quay_username }}
# password: ${{ secrets.quay_password }}
# if: ${{ inputs.quay_image_name && inputs.push }}
# - name: Login to GitHub Container Registry
# uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
# with:
# registry: ghcr.io
# username: ${{ secrets.ghcr_username }}
# password: ${{ secrets.ghcr_password }}
# if: ${{ inputs.ghcr_image_name && inputs.push }}
# - name: Login to dockerhub Container Registry
# uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
# with:
# username: ${{ secrets.docker_username }}
# password: ${{ secrets.docker_password }}
# if: ${{ inputs.docker_image_name && inputs.push }}
# - name: Build and push container image
# id: image
# uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 #v4.0.0
# with:
# context: .
# platforms: ${{ inputs.platforms }}
# push: ${{ inputs.push }}
# tags: ${{ env.TAGS }}
# target: ${{ inputs.target }}
# provenance: false
# sbom: false
# - name: Sign container images
# run: |
# for signing_tag in $SIGNING_TAGS; do
# cosign sign \
# -a "repo=${{ github.repository }}" \
# -a "workflow=${{ github.workflow }}" \
# -a "sha=${{ github.sha }}" \
# -y \
# "$signing_tag"@${{ steps.image.outputs.digest }}
# done
# if: ${{ inputs.push }}