-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional steps to test workflow
- Loading branch information
1 parent
209444e
commit 329b9cc
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters