This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
Merge pull request #17 from qpoint-io/marc-barry/injection-security-c… #58
Workflow file for this run
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
name: Docker Image CI | |
on: | |
push: | |
branches: ['main'] | |
tags: | |
- 'v*' | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get current branch or tag | |
id: get_ref | |
run: | | |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then | |
REF_NAME="${{ github.event.pull_request.head.ref }}" | |
else | |
REF_NAME=$(echo ${GITHUB_REF#refs/*/}) | |
fi | |
echo "REF_NAME=$REF_NAME" >> $GITHUB_ENV | |
echo "Current ref is: $REF_NAME" | |
- name: Modify REF_NAME if it's a version tag | |
if: startsWith(env.REF_NAME, 'v') | |
run: | | |
REF_NAME="${{ env.REF_NAME }}" | |
MODIFIED_REF_NAME="${REF_NAME:1}" | |
echo "MODIFIED_REF_NAME=$MODIFIED_REF_NAME" >> $GITHUB_ENV | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: us-docker.pkg.dev/qpoint-edge/public/kubernetes-qtap-operator | |
tags: | | |
type=sha | |
type=raw,value=branch-${{ env.REF_NAME }},enable=${{ env.REF_NAME != 'main' }} | |
type=raw,value=v${{ env.MODIFIED_REF_NAME }},enable=${{ startsWith(env.REF_NAME, 'v') }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GAR | |
uses: docker/login-action@v3 | |
with: | |
registry: us-docker.pkg.dev | |
username: _json_key | |
password: ${{ secrets.GAR_JSON_KEY }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 |