terraform/.forgejo/workflows/non-lab.yml
Workflow config file is invalid. Please check your config file: yaml: line 13: could not find expected ':'
2024-09-02 10:32:51 +02:00

13 lines
343 B
YAML

on:
- push
jobs:
init:
runs-on: docker
container:
image: alpine:latest
steps:
- curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh
- chmod +x ./install-opentofu.sh
- ./install-opentofu.sh --install-method apk
ZZ - rm -f ./install-opentofu.sh