Skip to content

Commit

Permalink
👷 ci: add skaffold build ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
W3D3 committed Mar 16, 2023
1 parent 4b263d5 commit d671fae
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build on Push
on:
push:
paths:
- src/**
- .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@latest
id: build
with:
command: build
skip-tests: true
push: false

0 comments on commit d671fae

Please sign in to comment.