We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7ca2d commit 4063624Copy full SHA for 4063624
.github/workflows/deploy.yml
@@ -19,8 +19,8 @@ jobs:
19
- name: Setup MySQL
20
uses: samin/mysql-action@v1
21
with:
22
- host port: 20000
23
- container port: 3306
+ host port: 3306
+ container port: 20000
24
character set server: 'utf8mb4'
25
collation server: 'utf8mb4_general_ci'
26
mysql version: '8.0'
@@ -40,5 +40,5 @@ jobs:
40
- name: Docker build and push
41
run: |
42
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
43
- docker build -t ${{ secrets.DOCKER_REPO }}/busan-reservation .
44
- docker push ${{ secrets.DOCKER_REPO }}/busan-reservation
+ docker build -t ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPO }} .
+ docker push ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPO }}
0 commit comments