We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade4a4c commit 690f296Copy full SHA for 690f296
.github/workflows/fork-ci-reusable.yml
@@ -115,6 +115,20 @@ jobs:
115
matrix:
116
component: ${{ fromJSON(inputs.components) }}
117
steps:
118
+ - name: Adjust image tag for STIG/FedRAMP images
119
+ id: set_tag
120
+ run: |
121
+ IMAGE_NAME="${{ matrix.component.imageName }}"
122
+ BASE_TAG="${{ env.DOCKER_TAG }}"
123
+ case "$IMAGE_NAME" in
124
+ *stig*)
125
+ NEW_TAG="${BASE_TAG}-stig-fips"
126
+ ;;
127
+ *)
128
+ NEW_TAG="${BASE_TAG}"
129
130
+ esac
131
+ echo "DOCKER_TAG=$NEW_TAG" >> $GITHUB_ENV
132
- uses: actions/checkout@v4
133
with:
134
ref: ${{ needs.determine_ref.outputs.github_ref_name }}
0 commit comments