Bump cross-spawn from 7.0.3 to 7.0.6 in /frontend #12
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: Push PR Image on Label | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [ labeled ] | |
env: | |
KUBERNETES_VERSION: "1.30.0" | |
KIND_VERSION: "0.23.0" | |
REGISTRY: ghcr.io | |
jobs: | |
push-image: | |
runs-on: ubuntu-latest | |
name: Push PR Image | |
if: ${{ github.event.label.name == 'build-push-image' }} | |
steps: | |
- name: Remove the test label | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: build-push-image | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{github.event.pull_request.head.sha}} | |
- name: Generate Tag | |
id: generate_tag | |
run: | | |
sha=${{ github.event.pull_request.head.sha }} | |
tag="SNAPSHOT-PR-${{ github.event.pull_request.number }}-${sha:0:8}" | |
echo "GIT_TAG=$(echo ${tag})" >> $GITHUB_OUTPUT | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Generate image repository path for ghcr registry | |
run: | | |
echo GHCR_IMAGE_REPOSITORY=${{env.REGISTRY}}/$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | |
- name: Login to ghcr registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{env.REGISTRY}} | |
username: stakater-user | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Build and Push image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ${{ env.DOCKER_FILE_PATH }} | |
pull: true | |
push: true | |
cache-to: type=inline | |
build-args: BUILD_PARAMETERS=${{ env.BUILD_PARAMETERS }} | |
platforms: linux/amd64,linux/arm,linux/arm64 | |
tags: | | |
${{ env.GHCR_IMAGE_REPOSITORY }}:${{ steps.generate_tag.outputs.GIT_TAG }} | |
labels: | | |
org.opencontainers.image.source=${{ github.event.repository.clone_url }} | |
org.opencontainers.image.created=${{ steps.prep.outputs.created }} | |
org.opencontainers.image.revision=${{ github.sha }} |