Some checks failed
Build Docker in Container / build-docker (push) Failing after 22s
22 lines
383 B
YAML
22 lines
383 B
YAML
name: Build Docker in Container
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-docker:
|
|
runs-on: docker
|
|
container:
|
|
image: alpine/helm
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # get full history
|
|
|
|
- name: Show current directory
|
|
run: pwd && ls -la
|