Skip to content

Commit

Permalink
wip add action
Browse files Browse the repository at this point in the history
  • Loading branch information
manolo committed Jan 15, 2025
1 parent 87936cb commit f6b271a
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/a.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: PiT
on:
workflow_dispatch:
push:
jobs:
prepare:
runs-on: ubuntu-latest
services:
docker:
image: docker:dind
options: --privileged --shm-size=2g
steps:
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: |
echo "OK OK "
node --version
type node
# - name: Install Docker
# run: |
# apt-get update
# apt-get install -y docker.io
# - name: Test Docker
# run: |
# docker version
# docker info
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
- name: Load images
run: |
docker ps
kind get clusters

0 comments on commit f6b271a

Please sign in to comment.