Use inherited secrets #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
Check failure on line 24 in .github/workflows/debian.yml GitHub Actions / DebianInvalid workflow file
|
||
with: | ||
alpine: "[]" | ||
debian: ${{ needs.supported-debian-versions.outputs.debian }} |