notohh
dbe1f96376
Some checks failed
flake check / check (push) Has been cancelled
fmt check / check (push) Has been cancelled
deploy systems / deploy (push) Failing after 9m30s
25 lines
809 B
YAML
25 lines
809 B
YAML
name: deploy systems
|
|
|
|
on: [push]
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: install nix action
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@v5
|
|
with:
|
|
github-token: ${{ secrets.GH_TOKEN }}
|
|
- name: write private key
|
|
run: |
|
|
mkdir -p .ssh && cd .ssh
|
|
echo "$SSH_KEY" > forgejo
|
|
echo "$SSH_KNOWN_HOSTS" > known_hosts
|
|
shell: bash
|
|
env:
|
|
SSH_KEY: ${{secrets.SSH_DEPLOY_KEY}}
|
|
SSH_KNOWN_HOSTS: ${{secrets.SSH_KNOWN_HOSTS}}
|
|
- name: deploy
|
|
run: |
|
|
cd .ssh
|
|
nix run github:serokell/deploy-rs -- --ssh-opts="-i forgejo -o StrictHostKeyChecking=no UserKnownHostsFile=/dev/null" --skip-checks --targets .#sakura
|