Skip to content

Package changes

Package changes #31

Workflow file for this run

name: test
on:
push:
tags:
- "*"
jobs:
build_packages:

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

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 8, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
container:
image: docker.pkg.github.com/regolith-linux/regolith-deb-builder/regolith-deb-builder:${{ matrix. release }}
credentials:
username: ${{ github.actor }}
password: ${{secrets.GITHUB_TOKEN}}
strategy:
matrix:
release: [bionic, focal, groovy]
name: Build packages on ${{ matrix.release }}
needs: [test]
steps:
- uses: actions/checkout@v2
- name: Build package
shell: bash
run: |
gbp buildpackage --no-sign
[ $(ls ../*.deb | wc -l) == "21" ]