Skip to content

Merge pull request #85 from rszamszur/update_flake_lock_action #93

Merge pull request #85 from rszamszur/update_flake_lock_action

Merge pull request #85 from rszamszur/update_flake_lock_action #93

Workflow file for this run

name: draugr
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
# This job checks if an identical workflow is being triggered by different
# event and skips it. For instance there is no need to run the same pipeline
# twice for pull_request and push for identical commit sha.
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
build: ${{ steps.filter.outputs.build }}
steps:
- uses: actions/checkout@v3
- id: skip_check
uses: fkirc/[email protected]
with:
skip_after_successful_duplicate: 'true'
concurrent_skipping: same_content
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
build:
- "hosts/draugr/**"
- ".github/workflows/draugr.yml"
- "modules/**"
- "pkgs/**"
- "flake.nix"
- "flake.lock"
nix-build:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' && needs.pre_job.outputs.build == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v22
- uses: actions/checkout@v3
- name: Setup Cachix ❄️
uses: cachix/cachix-action@v12
with:
name: rszamszur-nixos
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build draugr
env:
RCU_PRODUCT_KEY: ${{ secrets.RCU_PRODUCT_KEY }}
run: nix build .#nixosConfigurations.draugr.config.system.build.toplevel -L