-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (33 loc) · 1.08 KB
/
docker.yml
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
name: Build Docker Image
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
IMAGE: sierrasoftworks/blog
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Log into registries
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Build image
run: docker build . --file Dockerfile --tag image
- name: Calculate version number
id: version
run: |
VERSION=$(git describe --tags 2>/dev/null || git rev-parse --short HEAD)
echo "version=$VERSION" >> $GITHUB_ENV
- name: Push image to GitHub
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/${{ github.event.repository.name }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker tag image $IMAGE_ID:latest
docker push $IMAGE_ID:latest
docker tag image $IMAGE_ID:$version
docker push $IMAGE_ID:$version