more changes

This commit is contained in:
2025-04-25 17:40:46 -04:00
parent 494b30b1c5
commit df78e07bd1
4 changed files with 200 additions and 39 deletions

View File

@ -1,5 +1,17 @@
name: Build and Push Docker Image
# on:
# push:
# branches: [develop]
# paths-ignore:
# - 'README.md'
# # - '.github/**'
# pull_request:
# branches: [develop]
# paths-ignore:
# - 'README.md'
# # - '.github/**'
on:
workflow_dispatch:
branches: [develop]
@ -7,10 +19,11 @@ on:
- 'README.md'
# - '.github/**'
jobs:
build-and-push:
runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
# if: startsWith(github.ref, 'refs/tags')
steps:

View File

@ -1,5 +1,17 @@
name: Deploy Project
# on:
# push:
# branches: [develop]
# paths-ignore:
# - 'README.md'
# # - '.github/**'
# pull_request:
# branches: [develop]
# paths-ignore:
# - 'README.md'
# # - '.github/**'
on:
workflow_dispatch:
branches: [develop]
@ -10,7 +22,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3