Skip to content

Commit

Permalink
Add additional steps to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-ugurkontel committed Mar 12, 2024
1 parent 209444e commit 329b9cc
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Docker Image Release Pipeline

on:
push:
branches:
- main
workflow_dispatch:

jobs:
docker-img-build-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pwd && ls -al

# - run: docker image build -t ugurkontel/phptodo-example:frontend -f ./Dockerfile.frontend
# - run: docker image build -t ugurkontel/phptodo-example:backend -f ./Dockerfile.backend
# - run: docker image build -t ugurkontel/phptodo-example:database -f ./Dockerfile.database

# - run: docker login -u ugurkontel -p P@ssw0rd!

# - run: docker push ugurkontel/phptodo-example:frontend
# - run: docker push ugurkontel/phptodo-example:backend
# - run: docker push ugurkontel/phptodo-example:database
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Hello World
run: echo "Hello World"
run: echo "Hello World"
- name: Deneme
run: ls -al
- name: Pwd
run: pwd
- name: Deneme2
uses: actions/checkout@v4

0 comments on commit 329b9cc

Please sign in to comment.