Skip to content

Workflow file for this run

name: stable build
on:
push:
branches: [ stable ]
schedule:
- cron: '27 1 3 * *' # monthly build on 1st of each month, 1:27AM
jobs:
build:

Check failure on line 8 in .github/workflows/stable.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/stable.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
distrib: [ debian, fedora, ubuntu ]
steps:
- name: Checkout packages
uses: actions/checkout@v4
with:
ref: "stable"
- uses: pdidev/pkgs/.github/actions/deploy@stable
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
KEY_PASSPHRASE: "${{ secrets.KEY_PASSPHRASE }}"
distribution: "${{ matrix.distrib }}"
publish:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4