Skip to content

Add: kind spinup for release workflow #5

Add: kind spinup for release workflow

Add: kind spinup for release workflow #5

Workflow file for this run

name: Release Deploy module
on:
push:
tags: ['*']
permissions:
contents: read # needed for checkout
packages: write # needed for GHCR access
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup CUE
uses: cue-lang/[email protected]
with:
version: v0.6.0
- name: Setup Timoni
uses: stefanprodan/timoni/actions/setup@main
with:
version: 0.14.0
- name: Push
id: push
env:
USER: ${{ github.actor }}
PASS: ${{ secrets.GITHUB_TOKEN }}
OWNER: ${{ github.repository_owner }}
TAG: ${{ github.ref_name }}
run: make push
- name: Spinup kind
id: kind
run: make kind
- name: Test bundle
id: test
run: make bundleup