30 lines
596 B
YAML
Raw Normal View History

2024-11-25 08:45:23 -06:00
Name: Container Build Check
run-name: ${{ gitea.actor }}
on:
push:
branches:
- "**"
- "!master"
jobs:
Plan:
runs-on: ubuntu-latest
2024-11-25 08:53:23 -06:00
2024-11-25 08:50:27 -06:00
2024-11-25 08:45:23 -06:00
steps:
- uses: actions/checkout@v4
2024-11-25 09:00:14 -06:00
# with:
# fetch-depth: 0
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
- name: Build
id: Build Verify
2024-11-25 08:50:27 -06:00
run: docker build -t git.hamik.net/paradizelost/visubnet:latest .