mirror of
https://github.com/Mic92/nixos-wiki-infra.git
synced 2024-11-25 17:53:28 +01:00
8 lines
168 B
Bash
Executable File
8 lines
168 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
rm -f .terraform.lock.hcl
|
|
tofu init -backend-config="password=$GITLAB_TOKEN" -backend-config="username=$GITLAB_USER"
|
|
tofu apply
|
|
|