Skip to content

gh-actions: remove checks #41

gh-actions: remove checks

gh-actions: remove checks #41

Workflow file for this run

name: check
on:
push:
pull_request:
jobs:
build:

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

View workflow run for this annotation

GitHub Actions / check

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 6, Col: 3): The workflow must contain at least one job with no dependencies.
needs:
- run-checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- uses: cachix/cachix-action@v12
with:
name: vs49688-nix-cache
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: |
nix build .#ci
- name: Work around https://github.com/actions/upload-artifact/issues/92
run: |
mkdir dist
cp -Rp result/* dist/
- uses: actions/upload-artifact@v2
with:
name: release-artifacts
path: dist/*