30 lines
687 B
YAML
Raw Normal View History

2024-11-25 08:45:23 -06:00
Name: Container Build Push
run-name: ${{ gitea.actor }}
on:
pull_request:
types: [closed]
jobs:
Plan:
runs-on: ubuntu-latest
2024-11-25 08:52:32 -06:00
2024-11-25 08:45:23 -06:00
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
2024-11-25 08:52:32 -06:00
2024-11-25 08:45:23 -06:00
- name: List Contents
id: ls
run: ls -al
- name: Login to repo
id: login
run: echo "${{ secrets.GITEASECRET_TOKEN }}" | docker login git.hamik.net -u paradizelost --password-stdin
2024-11-25 08:53:23 -06:00
2024-11-25 08:45:23 -06:00
- name: Build
id: Build Verify
run: docker build -t git.hamik.net/paradizelost/visubnet:latest .
- name: Push to Repository
id: push
run: docker push git.hamik.net/paradizelost/visubnet