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

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

View workflow run for this annotation

GitHub Actions / Alpine

Invalid workflow file

The workflow is not valid. .github/workflows/alpine.yml (Line: 28, Col: 20): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.HUB_USERNAME .github/workflows/alpine.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 }}