chore(deps): bump @fortawesome/fontawesome-free from 6.6.0 to 6.7.1 (… #155
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: Build and Deploy Hugo Site with Nix | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code with submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Install Nix | |
run: | | |
curl -L https://nixos.org/nix/install | sh | |
source /home/runner/.nix-profile/etc/profile.d/nix.sh | |
mkdir -p /home/runner/.config/nix/ | |
echo "experimental-features = nix-command flakes" >> /home/runner/.config/nix/nix.conf | |
- name: Build Hugo Site | |
run: | | |
source /home/runner/.nix-profile/etc/profile.d/nix.sh | |
nix develop --extra-experimental-features nix-command --command build | |
- name: Set directory permissions for FTP Deploy | |
run: | | |
chmod -R 755 public/ | |
- name: Deploy to FTP server | |
uses: SamKirkland/[email protected] | |
with: | |
server: ${{ secrets.FTP_SERVER }} | |
username: ${{ secrets.FTP_USERNAME }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
local-dir: public/ | |
server-dir: website/ | |
state-name: ../.ftp-deploy-sync-state.json | |
protocol: ftps | |
security: strict | |
exclude: | | |
**/kaffeepause/** | |
**/scss/main.css | |
**/scss/main.css.map | |