diff --git a/.github/workflows/postgres-logical-backup.yml b/.github/workflows/postgres-logical-backup.yml index 2e9b6a4..7b7bc17 100644 --- a/.github/workflows/postgres-logical-backup.yml +++ b/.github/workflows/postgres-logical-backup.yml @@ -3,7 +3,7 @@ name: Build Logical backup on: push: branches: [ "*" ] - paths: 'logical-backup/**' + paths: 'postgres-logical-backup/**' tags: [ "v*" ] jobs: @@ -21,7 +21,7 @@ jobs: id: meta uses: docker/metadata-action@v3 with: - images: ghcr.io/obmondo/logical-backup + images: ghcr.io/obmondo/postgres-logical-backup tags: | type=ref,event=branch,enable=${{ !endsWith(github.ref, github.event.repository.default_branch) }} type=raw,value=latest,enable=${{ endsWith(github.ref, github.event.repository.default_branch) }} @@ -39,7 +39,7 @@ jobs: id: docker_build uses: docker/build-push-action@v2 with: - file: "./logical-backup/Dockerfile" + file: "./postgres-logical-backup/Dockerfile" context: . labels: ${{ steps.meta.outputs.labels }} push: true