Skip to content

chore: merge branch 'master' into develop #11

chore: merge branch 'master' into develop

chore: merge branch 'master' into develop #11

Workflow file for this run

name: ci-dev
on:
push:
branches-ignore:
- master
pull_request:
branches:
- master
jobs:
buildx:
name: Push branches and PRs
runs-on: self-hosted
if: ${{ !github.event.repository.fork && !github.event.pull_request.head.repo.fork && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == 'goattech-development/goatflix-requests') }}
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 # v3.4.0
- name: Login to DockerHub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: liquidgoat/goatflix-requests
- name: Build and push
uses: docker/[email protected]
with:
context: .
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
build-args: |
TAG=${{ steps.meta.outputs.version }}
COMMIT_TAG=${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=local,src=./docker-cache
cache-to: type=local,dest=./docker-cache,mode=max