This repository was archived by the owner on May 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
environment : Build
13
13
steps :
14
+ - name : Get current date
15
+ id : date
16
+ # run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H:%M:%S')"
17
+ run : echo "date=$(date +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
18
+
14
19
- name : Checkout Code
15
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
16
21
17
22
- name : Package container image for operator e2e tests
18
23
run : |
71
76
--provenance=false \
72
77
--build-arg TAG=$IMAGE_TAG \
73
78
--file build/Dockerfile \
79
+ --label "org.opencontainers.image.revision=${GITHUB_SHA}" \
80
+ --label "org.opencontainers.image.created=${{ steps.date.outputs.date }}" \
74
81
--tag=quay.io/microcks/microcks-ansible-operator:$IMAGE_TAG .
Original file line number Diff line number Diff line change 1
1
FROM quay.io/operator-framework/ansible-operator:v0.19.4
2
2
3
+ # Some version information
4
+ LABEL maintainer=
"Laurent Broudoux <[email protected] >" \
5
+ org.opencontainers.image.authors=
"Laurent Broudoux <[email protected] >" \
6
+ org.opencontainers.image.title="Microcks Ansible Operator" \
7
+ org.opencontainers.image.description="Microcks is Open Source cloud-native native tool for API Mocking and Testing" \
8
+ org.opencontainers.image.licenses="Apache-2.0" \
9
+ org.opencontainers.image.documentation="https://github.com/microcks/microcks-ansible-operator" \
10
+ io.artifacthub.package.readme-url="https://raw.githubusercontent.com/microcks/microcks-ansible-operator/master/README.md"
11
+
3
12
USER root
4
13
RUN yum clean all && rm -rf /var/cache/yum/* && yum install -y openssl
5
14
USER 1001
You can’t perform that action at this time.
0 commit comments