Skip to content

Commit

Permalink
Update environment variables in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-ugurkontel committed Mar 12, 2024
1 parent 329b9cc commit 3c646f1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,30 @@ on:
branches:
- main
workflow_dispatch:

env:
PADISAH: Osman
IMAGE_NAME: phptodo-example
IMAGE_TAG: latest

jobs:
docker-img-build-job:
env:
PADISAH2: Orhan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pwd && ls -al
env:
PADISAH3: Murad
docker-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
echo $PADISAH
echo $PADISAH2
echo $PADISAH3
# - run: docker image build -t ugurkontel/phptodo-example:frontend -f ./Dockerfile.frontend
# - run: docker image build -t ugurkontel/phptodo-example:backend -f ./Dockerfile.backend
Expand Down

0 comments on commit 3c646f1

Please sign in to comment.