snowflake/.forgejo/workflows/deployment/deploy-systems.yml
notohh 503388ff9f
Some checks reported warnings
flake check / check (push) Has been cancelled
deploy systems / deploy (push) Successful in 9m45s
fmt check / check (push) Successful in 42s
deploy: this should fix deploys
2023-10-21 03:10:09 -04:00

25 lines
704 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
chmod 400 forgejo
shell: bash
env:
SSH_KEY: ${{secrets.SSH_DEPLOY_KEY}}
- name: deploy
run: |
cd .ssh
nix run github:serokell/deploy-rs -- --ssh-opts="-i forgejo -o StrictHostKeyChecking=no" --skip-checks --targets .#sakura