Workflow config file is invalid. Please check your config file: yaml: line 26: could not find expected ':'
Dan Hamik d8127d7d9c
Some checks failed
/ Plan (pull_request) Failing after 8s
additional build changes
2024-11-25 09:06:29 -06:00

27 lines
553 B
YAML

Name: Container Build Check
run-name: ${{ gitea.actor }}
on:
push:
branches:
- "**"
- "!master"
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
docker build -t git.hamik.net/paradizelost/visubnet:latest .