Skip to content

Pass in auth secrets to workflow_call #11

Pass in auth secrets to workflow_call

Pass in auth secrets to workflow_call #11

Workflow file for this run

name: Debian
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
schedule:
- cron: '13 4 * * *'
jobs:
supported-debian-versions:
name: Supported Debian versions
runs-on: ubuntu-latest
outputs:
debian: ${{ steps.supported-debian-versions.outputs.versions }}
steps:
- id: supported-debian-versions
name: Generate Debian
uses: wyrihaximus/github-action-supported-debian-linux-versions@v1
ci:
needs:
- supported-debian-versions
name: Continuous Integration
uses: ./.github/workflows/ci.yml
with:
alpine: "[]"
debian: ${{ needs.supported-debian-versions.outputs.debian }}
docker_user: ${{ secrets.HUB_USERNAME }}

Check failure on line 28 in .github/workflows/debian.yml

View workflow run for this annotation

GitHub Actions / Debian

Invalid workflow file

The workflow is not valid. .github/workflows/debian.yml (Line: 28, Col: 20): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.HUB_USERNAME .github/workflows/debian.yml (Line: 29, Col: 19): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.GHCR_TOKEN
ghcr_token: ${{ secrets.GHCR_TOKEN }}
hub_passcode: ${{ secrets.HUB_PASSCODE }}