aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker.yml
blob: 907bb4bc4471e7ff4bae241cbe5f059770f9f7a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Build and Push Docker
on:
  push:
    branches:
      - main
jobs:
  push:
    runs-on: ubuntu-latest
    permissions:
      packages: write
      contents: read

    steps:
      - uses: actions/checkout@v4

      - name: Build image
        run: |
          docker build . --target workers --tag hoarder-workers
          docker build . --target web --tag hoarder-web

      - name: Log in to registry
        # This is where you will update the PAT to GITHUB_TOKEN
        run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

      - name: Push image
        run: |
          OWNER=$(echo ${{github.repository_owner}} | tr '[A-Z]' '[a-z]')
          docker tag hoarder-workers ghcr.io/$OWNER/hoarder-workers:latest
          docker tag hoarder-web ghcr.io/$OWNER/hoarder-web:latest
          docker push ghcr.io/$OWNER/hoarder-workers:latest
          docker push ghcr.io/$OWNER/hoarder-web:latest