feat: Deploy to S3
All checks were successful
build site / build_site (push) Successful in 1m46s

This commit is contained in:
sinavir 2024-12-17 21:55:42 +01:00
parent 2d0abde6af
commit ba0536df61
No known key found for this signature in database
2 changed files with 45 additions and 20 deletions

View file

@ -0,0 +1,25 @@
name: build configuration
on:
push:
branches:
- master
jobs:
build:
runs-on: nix
steps:
- uses: actions/checkout@v3
- name: Build
run: nix-build
- name: deploy
run: nix-shell -p awscli2 --run "aws s3 sync ./result/ s3://$BUCKET/ --delete --endpoint-url $URL"
env:
URL: "https://s3.dgnum.eu/"
BUCKET: pub.dgnum.eu
AWS_ACCESS_KEY_ID: ${{ secrets.KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_KEY }}

View file

@ -51,29 +51,29 @@ let
]); ]);
in in
{ pkgs.stdenv.mkDerivation {
devShell = pkgs.mkShell { name = "dgnum-landing";
packages = [ version = "1.0.1";
(pkgs.callPackage "${sources.lon}/nix/packages/lon.nix" { }) src = ./src;
python3
]; passthru = {
devShell = pkgs.mkShell {
packages = [
(pkgs.callPackage "${sources.lon}/nix/packages/lon.nix" { })
python3
];
};
}; };
package = pkgs.stdenv.mkDerivation { buildInputs = [ python3 ];
name = "dgnum-landing";
version = "1.0.1";
src = ./src;
buildInputs = [ python3 ]; env.DATA_FILE = pkgs.writers.writeJSON "data.json" { inherit description links; };
env.DATA_FILE = pkgs.writers.writeJSON "data.json" { inherit description links; }; configurePhase = ''
export BUILD_DIR=$out
'';
configurePhase = '' buildPhase = ''
export BUILD_DIR=$out python3 build.py
''; '';
buildPhase = ''
python3 build.py
'';
};
} }