-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub workflow to build and push container image
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
name: Container | ||
|
||
on: | ||
push: | ||
branches: | ||
# - main | ||
- update-toolchain/2023/42 | ||
|
||
env: | ||
REGISTRY_DOMAIN: ${{ secrets.REGISTRY_DOMAIN }} | ||
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} | ||
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} | ||
CONTAINER_IMAGE: ${{ secrets.REGISTRY_DOMAIN }}/docs/environment | ||
# TAG: ${{ env.GITHUB_REF_NAME }} | ||
TAG: main | ||
|
||
jobs: | ||
build: | ||
name: Build and push container image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 1 | ||
- name: Set up Docker Buildx | ||
uses: docker/[email protected] | ||
- name: Login into container registry | ||
uses: docker/[email protected] | ||
with: | ||
registry: ${{ secrets.REGISTRY_DOMAIN }} | ||
username: ${{ secrets.REGISTRY_USERNAME }} | ||
password: ${{ secrets.REGISTRY_PASSWORD }} | ||
- name: Get user environment | ||
run: | | ||
echo "USER_ID=$(id -u)" >> $GITHUB_ENV | ||
echo "GROUP_ID=$(id -g)" >> $GITHUB_ENV | ||
- name: Build container image and push it to registry | ||
uses: docker/[email protected] | ||
id: build-and-push | ||
with: | ||
context: . | ||
file: Dockerfile | ||
build-args: | | ||
USER_ID="${{ env.USER_ID }}" | ||
GROUP_ID="${{ env.GROUP_ID }}" | ||
pull: true | ||
push: true | ||
tags: ${{ env.CONTAINER_IMAGE }}:${{ env.TAG }} | ||
- name: Install Cosign | ||
uses: sigstore/[email protected] | ||
- name: Sign container image | ||
env: | ||
COSIGN_PRIVATE_KEY: ${{ secrets.COSIGN_PRIVATE_KEY }} | ||
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }} | ||
DIGEST: ${{ steps.build-and-push.outputs.digest }} | ||
run: > | ||
cosign | ||
sign | ||
--yes | ||
--key env://COSIGN_PRIVATE_KEY | ||
--tlog-upload=false | ||
"${TAG}@${DIGEST}" |