Skip to content

Fix website deploy scripts to deploy new version #1566

Fix website deploy scripts to deploy new version

Fix website deploy scripts to deploy new version #1566

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
catchall:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v20
with:
extra_nix_config: |
extra-trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=
extra-substituters = https://cache.garnix.io
fallback = true
- name: Remove /opt to free up disk space
run: sudo rm -rf /opt/*
- name: Set up git user
run: |
git config --global user.name "ci-test-user"
git config --global user.email "[email protected]"
- uses: lriesebos/nix-develop-command@v1
with:
command: "just github-ci"