Skip to content

Creates ROCK for Vault #1

Creates ROCK for Vault

Creates ROCK for Vault #1

Workflow file for this run

name: Main
on:
push:
schedule:
- cron: '0 8 * * 2'
jobs:
build:
uses: ./.github/workflows/build-rock.yaml
scan:
needs: build-rock
uses: ./.github/workflows/scan-rock.yaml
integration-tests:
needs: build
uses: ./.github/workflows/integration_tests.yaml

Check failure on line 19 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yaml" -> "./.github/workflows/integration_tests.yaml" : failed to fetch workflow: workflow was not found.
publish:
if: github.ref_name == 'main'
needs: [scan-rock, integration-tests]
uses: ./.github/workflows/publish-rock.yaml