Skip to content

v0.6.0

Compare
Choose a tag to compare
@motatoes motatoes released this 01 Jul 15:48
· 132 commits to develop since this release
96ce5fd

What's Changed

Breaking change: If updating from previous version and using digger orchestrator your digger_workflow.yml needs to be updated. It needs to accept a spec as input and pass that onto the digger step:

name: Digger Workflow

on:
  workflow_dispatch:
    inputs:
      spec:
        required: true
      run_name:
        required: false

......
.......


    steps:
      - name: digger run
        uses: diggerhq/digger@vLatest
        with:
          digger-spec: ${{ inputs.spec }}

Full Changelog: v0.5.14...v0.6.0