librarynotices/.gitea/workflows/check-build.yml
Dan Hamik 0388bb3641
All checks were successful
/ Plan (push) Successful in 13s
/ Plan (pull_request) Successful in 15s
/ Deploy (pull_request) Successful in 12s
dev build separate from latest
2024-11-26 08:03:57 -06:00

29 lines
647 B
YAML

Name: Commit Checks
run-name: ${{ gitea.actor }}
on:
push:
branches:
- "**"
- "!main"
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: Deploy
run: |
echo "${{ secrets.GITEASECRET_TOKEN }}" | docker login git.hamik.net -u paradizelost --password-stdin
docker build -t git.hamik.net/paradizelost/librarynotices:dev .
docker push git.hamik.net/paradizelost/librarynotices:dev