Merge pull request #487 from Caascad/print_zone_infos #18
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: Publish terraform providers | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '**.nix' | |
- 'nix/*' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
- name: Setup binary cache | |
uses: cachix/cachix-action@v12 | |
with: | |
name: toolbox | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- name: Build terraform providers | |
run: nix-build -A terraform-providers |