Merge pull request #15 from section77/dependabot/github_actions/cachi… #15
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: ci | |
on: | |
push: | |
branches: [master] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v24 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: s77-werbematerial | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- name: build | |
run: | | |
nix-build --argstr public-url "/werbematerial" -A webapp -o result-webapp | |
nix-build --argstr public-url "/werbematerial" -A indexer -o result-indexer |