Dan Hamik 5ffda6ec6a
All checks were successful
/ Plan (push) Successful in 20s
url stuff agian
2024-11-25 08:36:47 -06:00

34 lines
899 B
YAML

Name: Terraform Processing
run-name: ${{ gitea.actor }}
on:
push:
branches:
- "**"
# - "!master"
jobs:
Plan:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
#
- name: List Contents
id: ls
run: ls -al
#- name: Set git remote if not already set
# run: git remote -v | grep -w gitea || git remote add gitea "./gitea/git/repositories/${GITHUB_REPOSITORY,,}.git"
#- name: Install Docker
# run: curl -fsSL https://get.docker.com | sh
- 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 .
docker push git.hamik.net/paradizelost/visubnet