terraform/.forgejo/workflows/non-lab.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 10: cannot unmarshal !!str `curl -f...` into model.Step line 11: cannot unmarshal !!str `chmod +...` into model.Step line 12: cannot unmarshal !!str `./insta...` into model.Step line 13: cannot unmarshal !!str `rm -f ....` into model.Step
2024-09-02 10:36:11 +02:00

13 lines
314 B
YAML

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