Merge pull request #1059 from morucci/release-1.9.0 #4
Workflow file for this run
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
jobs: | |
publish-tag-nix-build: | |
if: "github.repository_owner == 'change-metrics'" | |
name: publish-tag-nix-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "cachix/install-nix-action@v20" | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: "cachix/cachix-action@v12" | |
with: | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
name: change-metrics | |
- name: Build the project | |
run: nix build --no-link | |
name: Publish Tag Nix Build | |
on: | |
push: | |
tags: | |
- "*" |