[devops-220] update pvs-studio version #27
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: 'Deploy' | |
on: | |
push: | |
branches: | |
- dev | |
tags: | |
- '*' | |
pull_request: | |
env: | |
IMAGE_NAME: "flipperdevices/github-actions-runner" | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: 'Checkout code' | |
uses: actions/checkout@v4 | |
- name: 'Set image tag and name' | |
id: tag | |
run: | | |
IMAGE_TAG="0.0.0" | |
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then | |
REF=${{ github.ref }}; | |
TAG_FULL=${REF#refs/*/}; | |
IMAGE_TAG=${TAG_FULL//\//_}; | |
fi | |
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV | |
echo "image_tag=${IMAGE_TAG}" >> $GITHUB_OUTPUT | |
echo "image_name=${IMAGE_NAME}" >> $GITHUB_OUTPUT | |
- name: 'Login to Docker Hub' | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- name: 'Set up Docker Buildx' | |
uses: docker/setup-buildx-action@v3 | |
- name: 'Build flipperzero-firmware' | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
tags: ${{ steps.tag.outputs.image_name }}-fz-fw:${{ steps.tag.outputs.image_tag }} | |
cache-from: type=registry,ref=${{ steps.tag.outputs.image_name }}-fz-fw:buildcache | |
context: flipperzero-firmware | |
- name: 'Push flipperzero-firmware' | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
tags: ${{ steps.tag.outputs.image_name }}-fz-fw:${{ steps.tag.outputs.image_tag }} | |
cache-from: type=registry,ref=${{ steps.tag.outputs.image_name }}-fz-fw:buildcache | |
cache-to: type=registry,ref=${{ steps.tag.outputs.image_name }}-fz-fw:buildcache,mode=max | |
context: flipperzero-firmware | |
- name: 'Trigger k8s to use new image flipperzero-firmware: prod' | |
if: ${{ (github.event_name != 'pull_request') | |
&& (steps.tag.outputs.image_tag != '0.0.0') | |
&& (!endsWith(github.event.client_payload.image_tag, '-rc')) }} | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
repository: ${{ secrets.INFRASTRUCTURE_REPO }} | |
token: ${{ secrets.K8S_GITHUB_PAT }} | |
event-type: github-actions-runner-fz-fw-deploy | |
client-payload: '{"image_tag": "${{steps.tag.outputs.image_tag}}"}' |