Skip to content

Commit

Permalink
test p-l chain
Browse files Browse the repository at this point in the history
  • Loading branch information
nikatar committed Feb 29, 2024
1 parent 5039fe2 commit f22e2d8
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
name: 'Deploy'
name: "Deploy"

on:
push:
branches:
- dev
- drunkbatya/separate_dev_layer
tags:
- '*'
- "*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Checkout code'
- name: "Checkout code"
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 'Set image tag'
- name: "Set image tag"
id: tag
run: |
IMAGE_TAG="0.0.0"
Expand All @@ -28,31 +29,31 @@ jobs:
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV
echo "image_tag=${IMAGE_TAG}" >> $GITHUB_OUTPUT
- name: 'Set up QEMU'
- name: "Set up QEMU"
uses: docker/setup-qemu-action@v2

- name: 'Set up Docker Buildx'
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v2

- name: 'Login to GHCR'
- name: "Login to GHCR"
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}

- name: 'Build and push'
- name: "Build and push"
id: docker_build
uses: docker/build-push-action@v4
with:
push: true
tags: ghcr.io/flipperdevices/flpr.app:${{steps.tag.outputs.image_tag}}

- name: 'Image digest'
- name: "Image digest"
run: |
echo ${{ steps.docker_build.outputs.digest }}
- name: 'Trigger k8s to use new dev image'
- name: "Trigger k8s to use new dev image"
if: ${{ steps.tag.outputs.image_tag == '0.0.0' }}
uses: peter-evans/repository-dispatch@v2
with:
Expand All @@ -61,7 +62,7 @@ jobs:
event-type: flpr-app-deploy
client-payload: '{"image_tag": "${{steps.tag.outputs.image_tag}}"}'

- name: 'Trigger k8s to use new prod image'
- name: "Trigger k8s to use new prod image"
if: ${{ steps.tag.outputs.image_tag != '0.0.0' }}
uses: peter-evans/repository-dispatch@v2
with:
Expand Down

0 comments on commit f22e2d8

Please sign in to comment.