-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.55 KB
/
Copy pathcd-docker-image.yaml
File metadata and controls
54 lines (45 loc) · 1.55 KB
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
name: CD - Publish Docker Image on GitHub Registry
on:
release:
types: [published]
push:
branches: [develop]
jobs:
push-image:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set lowercase repository owner
run: |
echo "REPOSITORY_OWNER_LOWERCASE=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
- name: Set image tag for release
if: github.event_name == 'release'
run: |
echo "IMAGE_TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
- name: Set image tag for develop push
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
run: |
echo "IMAGE_TAG=develop" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
buildkitd-flags: --debug
- name: Log in to Docker registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/${{ env.REPOSITORY_OWNER_LOWERCASE }}/services-backup:latest
ghcr.io/${{ env.REPOSITORY_OWNER_LOWERCASE }}/services-backup:${{ env.IMAGE_TAG }}