terraform/.forgejo/workflows/non-lab.yml

14 lines
314 B
YAML
Raw Normal View History

2024-09-02 10:32:51 +02:00
on:
- push
jobs:
init:
runs-on: docker
container:
image: alpine:latest
steps:
2024-09-02 10:36:11 +02:00
- curl -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh
2024-09-02 10:32:51 +02:00
- chmod +x ./install-opentofu.sh
- ./install-opentofu.sh --install-method apk
2024-09-02 10:34:40 +02:00
- rm -f ./install-opentofu.sh