Skip to content

ci: Add deploy action #15

ci: Add deploy action

ci: Add deploy action #15

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- main
name: Build and deploy to Docker Hub
jobs:
deploy:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64
- name: Docker Setup Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: c4stus/lights-api
tags: type=sha
- name: Docker Login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
platforms: |
linux/amd64
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Deploy to ArgoCD
run: |

Check failure on line 50 in .github/workflows/distribute.yml

View workflow run for this annotation

GitHub Actions / Build and deploy to Docker Hub

Invalid workflow file

The workflow is not valid. .github/workflows/distribute.yml (Line: 50, Col: 12): Unexpected symbol: '"org'. Located at position 27 within expression: steps.meta.outputs.labels["org.opencontainers.image.version"]
set -e
curl -w "%{response_code}" -X POST https://api.github.com/repos/castus/lights-api-charts/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-u ${{ secrets.CHARTS_DEPLOY_TOKEN }} \
--data '{"event_type": "deploy", "client_payload": { "image_tag": "'"${{ steps.meta.outputs.labels["org.opencontainers.image.version"] }}"'" }}'