Add function that produces a range from an exact version (#702) #166
This file contains hidden or 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: deploy | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| deploy: | |
| # Deploys should only occur from the master branch | |
| if: github.ref_name == 'master' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup SSH keys and known_hosts | |
| env: | |
| SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
| run: | | |
| ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
| ssh-add - <<< "${{ secrets.PACCHETTIBOTTI_SSH_KEY }}" | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v4 | |
| - name: Setup Nix cache | |
| uses: DeterminateSystems/magic-nix-cache-action@v2 | |
| - name: Deploy with Colmena | |
| env: | |
| SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
| run: | | |
| nix develop --command colmena apply |