Skip to content

Commit

Permalink
New Update
Browse files Browse the repository at this point in the history
1. ci/cd fix
  • Loading branch information
megoRU committed Jan 31, 2024
1 parent cd687dc commit 70a77fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI/CD
on:
push:
branches:
- 'main'
- 'new-stage-release'

jobs:

Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build and tag image
run: |
docker build -t megoru/giveaway .
docker build -t megoru/giveaway:dev .
# Login to Docker Hub:
- name: Docker login
uses: docker/login-action@v2
Expand All @@ -23,4 +23,4 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
# Push image to Docker Hub:
- name: Publish image
run: docker push megoru/giveaway
run: docker push megoru/giveaway:dev

0 comments on commit 70a77fe

Please sign in to comment.