diff --git a/.github/workflows/database.yml b/.github/workflows/database.yml deleted file mode 100644 index 4308944..0000000 --- a/.github/workflows/database.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Build and publish the database Docker Image - -on: - push: - branches: ['main'] - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} - -jobs: - build-and-push-image: - runs-on: ubuntu-latest - - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v2 - with: - context: ./database - push: true - tags: ghcr.io/${{ github.repository }}-database:latest \ No newline at end of file