Skip to content

fix tags v6

fix tags v6 #16

Workflow file for this run

name: Publish Web UI Docker Image to Docker Hub
on:
workflow_dispatch:
pull_request:
push:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

Check failure on line 15 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: timofeytst/eat-place
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# - name: Get branch name
# uses: nelonoel/[email protected]
# - run: echo ${BRANCH_NAME}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
file: Dockerfile.prod
# tags: timofeytst/eat-place:${BRANCH_NAME}
tags: ${{ steps.meta.outputs.tags }}
deploy:
needs: build
if: github.ref == 'refs/heads/prod'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Trigger repo
uses: convictional/[email protected]
with:
owner: eat-place
repo: deploy
ref: prod
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
workflow_file_name: deploy-runners.yaml
client_payload: '{}'
wait_interval: 11
trigger_workflow: true
wait_workflow: true
propagate_failure: true