28 lines
585 B
YAML
Raw Normal View History

2024-11-25 09:14:39 -06:00
Name: Terraform Processing
2024-11-25 08:45:23 -06:00
run-name: ${{ gitea.actor }}
on:
push:
branches:
- "**"
2024-11-25 09:14:39 -06:00
- "!master"
2024-11-25 08:45:23 -06:00
jobs:
Plan:
runs-on: ubuntu-latest
2024-11-25 09:14:39 -06:00
defaults:
run:
working-directory: ./
2024-11-25 08:45:23 -06:00
steps:
- uses: actions/checkout@v4
2024-11-25 09:03:25 -06:00
with:
fetch-depth: 0
2024-11-25 09:14:39 -06:00
#
2024-11-25 08:45:23 -06:00
- name: List Contents
id: ls
run: ls -al
2024-11-25 09:14:39 -06:00
- name: Deploy
run: |
echo "${{ secrets.GITEASECRET_TOKEN }}" | docker login git.hamik.net -u paradizelost --password-stdin
docker build -t git.hamik.net/paradizelost/visubnet:latest .