Skip to content

CI

CI #14

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- master
paths:
- ".github/workflows/**"
- Dockerfile
pull_request:
branches:
- master
paths:
- ".github/workflows/**"
- Dockerfile
release:
types: [published]
permissions: {}
jobs:
docker:
name: Docker
uses: ./.github/workflows/docker.yml
permissions:
packages: write
publish:

Check failure on line 29 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 29, Col: 3): Error calling workflow 'bunkerlab-net/docker-polkadot/.github/workflows/publish.yml@e84508316824e07caa3ecbb030f39df59d41fe49'. The nested job 'release-assets' is requesting 'contents: write', but is only allowed 'contents: none'.
name: Publish
needs: docker
if: github.event_name == 'release'
uses: ./.github/workflows/publish.yml
with:
version: ${{ needs.docker.outputs.version }}