diff --git a/.github/workflows/dev-docker-io.yml b/.github/workflows/dev-docker-io.yml index 89c62d1..64d1981 100644 --- a/.github/workflows/dev-docker-io.yml +++ b/.github/workflows/dev-docker-io.yml @@ -16,11 +16,20 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Build and Push Docker Image to docker.io + # - name: Build and Push Docker Image to docker.io + # uses: mr-smithers-excellent/docker-build-push@v6 + # with: + # image: ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }} + # tags: ${{ env.TAGS }} + # registry: docker.io + # username: ${{ secrets.DOCKER_USERNAME }} + # password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Build and Push Docker Image to Github uses: mr-smithers-excellent/docker-build-push@v6 with: - image: ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }} + image: ${{ env.IMAGE_NAME }} tags: ${{ env.TAGS }} - registry: docker.io - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} \ No newline at end of file + registry: ghcr.io + username: ${{ secrets.GHCR_USERNAME }} + password: ${{ secrets.GHCR_TOKEN }} \ No newline at end of file