๐Ÿ“ฆ EqualifyEverything / a11yfana

๐Ÿ“„ containerize.yml ยท 59 lines
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59name: ๐Ÿ—๏ธ๐Ÿ“ค Build and publish ๐Ÿณ images

on:
  push:

env:
  GHCR_REGISTRY: ghcr.io
  DOCKERHUB_REGISTRY: docker.io
  IMAGE_NAME: ${{ github.repository }}

jobs:
  build-and-push-image:
    name: ๐Ÿ—๏ธ๐Ÿ“ค Build and push ๐Ÿณ image
    runs-on: ubuntu-latest
    permissions:
      contents: read
      packages: write

    steps:
      - name: ๐Ÿ‘€๐Ÿ“ฆ Checkout repository.
        uses: actions/checkout@v3

      - name: ๐Ÿ”‘๐Ÿ“ฆ Login to GitHub Container Registry
        uses: docker/login-action@v2.1.0
        with:
          registry: ${{ env.GHCR_REGISTRY }}
          username: ${{ github.actor }}
          password: ${{ secrets.GITHUB_TOKEN }}

      - name: ๐Ÿ”‘๐Ÿ“ฆ Login to Docker Hub
        uses: docker/login-action@v2.1.0
        with:
          registry: ${{ env.DOCKERHUB_REGISTRY }}
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}

      - name: ๐Ÿ”๐Ÿ“ Extract metadata (๐Ÿท๏ธ, ๐Ÿท๏ธ) for ๐Ÿณ
        id: meta
        uses: docker/metadata-action@v4.3.0
        with:
          flavor: |
            latest=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
          images: |
            ${{ env.GHCR_REGISTRY }}/${{ env.IMAGE_NAME }}
            ${{ env.DOCKERHUB_REGISTRY }}/${{ env.IMAGE_NAME }}
          tags: |
            type=raw,value=latest,priority=100,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
            type=sha,enable=true,prefix={{branch}}-,suffix=,format=short
            type=raw,prefix={{branch}}-,value=latest,priority=100,enable=${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }}


      - name: ๐Ÿ—๏ธ๐Ÿ“ค Build and push ๐Ÿณ image
        uses: docker/build-push-action@v4.0.0
        with:
          context: .
          push: true
          tags: ${{ steps.meta.outputs.tags }}
          labels: ${{ steps.meta.outputs.labels }}