Skip to content

Commit

Permalink
fix: Change repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagobraga committed Mar 8, 2024
1 parent ce94e20 commit 8bfc784
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:

- name: Build and export to Docker
uses: docker/build-push-action@v5
with: { load: true, context: "${{ matrix.type }}", tags: "thiagobraga/scaffold-php8:${{ matrix.type }}" }
with: { load: true, context: "${{ matrix.type }}", tags: "scaffoldeducation/php8:${{ matrix.type }}" }

- name: Test images
run: ./test.build.sh ${{ matrix.type }} && ./test.run.sh ${{ matrix.type }}

- name: Login to DockerHub
uses: docker/login-action@v3
if: github.ref == 'refs/heads/main' && github.repository == 'thiagobraga/scaffold-php8'
if: github.ref == 'refs/heads/main' && github.repository == 'scaffoldeducation/php8'
with: { username: "${{ secrets.DOCKERHUB_USERNAME }}", password: "${{ secrets.DOCKERHUB_PASSWORD }}" }

- name: Build and push
uses: docker/build-push-action@v5
if: github.ref == 'refs/heads/main' && github.repository == 'thiagobraga/scaffold-php8'
with: { push: true, context: "${{ matrix.type }}", tags: "thiagobraga/scaffold-php8:${{ matrix.type }}" }
if: github.ref == 'refs/heads/main' && github.repository == 'scaffoldeducation/php8'
with: { push: true, context: "${{ matrix.type }}", tags: "scaffoldeducation/php8:${{ matrix.type }}" }

0 comments on commit 8bfc784

Please sign in to comment.