31 lines
623 B
YAML
31 lines
623 B
YAML
name: test
|
|
on:
|
|
push:
|
|
branches:
|
|
- release
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: http://gitea.xkkxyy.com/actions/checkout@main
|
|
- name: Docker Build and Push
|
|
run: |
|
|
docker build -t my-django:latest .
|
|
continue-on-error: true
|
|
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
steps:
|
|
- name: Debug directory
|
|
run: |
|
|
echo "Current directory:"
|
|
pwd
|
|
lscpu
|
|
echo "Listing /opt/docker:"
|
|
ls -l /opt/docker
|
|
- name: Deploy to Test
|
|
run: cd /opt/docker
|