diff options
author | EuAndreh <eu@euandre.org> | 2018-12-29 19:09:26 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-12-29 19:19:02 -0200 |
commit | 2c83050b71eaef3f23370d5501461d88e15d16d2 (patch) | |
tree | c5ba22d46c951d76c86d276ab583708678f2355a | |
parent | Test Dhall generated .build.yml file. (diff) | |
download | euandre.org-2c83050b71eaef3f23370d5501461d88e15d16d2.tar.gz euandre.org-2c83050b71eaef3f23370d5501461d88e15d16d2.tar.xz |
WIP: Manually modify generated .build.yml.
-rw-r--r-- | .build.yml | 32 |
1 files changed, 12 insertions, 20 deletions
@@ -1,4 +1,4 @@ -image: debian/strech +image: debian/stretch secrets: - 7159f943-811f-402d-bb6d-37cd764dc728 triggers: @@ -8,24 +8,16 @@ triggers: sources: - https://git.sr.ht/~euandreh/website tasks: - setup: ! 'curl https://nixos.org/nix/install | sh - - echo ''. $HOME/.nix-profile/etc/profile.d/nix.sh'' >> $HOME/.buildenv - -' - test: ! 'cd website/ - - nix-build -A test - -' - publish: ! 'cd website/ - - nix-build -A publishScript - - source env.sh - - ./result/bin/publish.sh - -' + - setup: | + curl https://nixos.org/nix/install | sh + echo '. $HOME/.nix-profile/etc/profile.d/nix.sh' >> $HOME/.buildenv + - test: | + cd website/ + nix-build -A test + - publish: | + cd website/ + nix-build -A publishScript + source env.sh + ./result/bin/publish.sh packages: - curl |