30 lines
687 B
YAML
30 lines
687 B
YAML
Name: Container Build Push
|
|
run-name: ${{ gitea.actor }}
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
Plan:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- 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
|
|
run: docker build -t git.hamik.net/paradizelost/visubnet:latest .
|
|
|
|
- name: Push to Repository
|
|
id: push
|
|
run: docker push git.hamik.net/paradizelost/visubnet |