Skip to content

🐘 Add like-service (PHP) for liking/unliking posts #42

🐘 Add like-service (PHP) for liking/unliking posts

🐘 Add like-service (PHP) for liking/unliking posts #42

Workflow file for this run

name: Build on PR
on:
pull_request:
paths:
- src/**
- k8s-manifests
- .github/workflows/build-images.yaml
jobs:
build:
name: Skaffold Build
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Cache layers
uses: actions/cache@v3
with:
path: "${{ github.workspace }}/.skaffold/cache"
key: skaffold-${{ hashFiles('**/cache') }}
restore-keys: |
skaffold-
- name: Run Skaffold build pipeline
uses: hiberbee/github-action-skaffold@1.26.0
id: build
with:
command: build
skip-tests: true
push: false