Skip to content

add upload_oci workflow #16

add upload_oci workflow

add upload_oci workflow #16

Workflow file for this run

name: dev
on:
push:
paths-ignore:
- "**/README.md"
- "docs/**"
pull_request:
paths-ignore:
- "**/README.md"
- "docs/**"
jobs:
set_version:
runs-on: ubuntu-latest
outputs:
VERSION: ${{ steps.version.outputs.VERSION }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: use VERSION file to support dev build on rel-branch
id: version
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT
build:

Check failure on line 25 in .github/workflows/dev.yml

View workflow run for this annotation

GitHub Actions / dev

Invalid workflow file

The workflow is not valid. .github/workflows/dev.yml (Line: 25, Col: 3): Error calling workflow 'gardenlinux/gardenlinux/.github/workflows/build.yml@main'. The nested job 'images' is requesting 'id-token: write', but is only allowed 'id-token: none'.
needs: [set_version]
uses: gardenlinux/gardenlinux/.github/workflows/build.yml@main
with:
version: ${{ needs.set_version.outputs.VERSION }}