Skip to content

Attempt to fix GHCR permissions issue (#3) #4

Attempt to fix GHCR permissions issue (#3)

Attempt to fix GHCR permissions issue (#3) #4

Workflow file for this run

name: "Release"

Check failure on line 1 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

(Line: 16, Col: 17): Unexpected value 'read'
on:
push:
branches:
- main
jobs:
deploy:
name: "Release to GHCR"
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
permissions:
contents: write
id-token: read
packages: write
steps:
- uses: actions/checkout@v6
- name: "Publish features"
uses: devcontainers/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
publish-features: "true"
base-path-to-features: "./src"