-
Notifications
You must be signed in to change notification settings - Fork 17
56 lines (54 loc) · 2.09 KB
/
docker-release.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Docker Release
on:
workflow_call:
inputs:
image-tag:
required: true
type: string
jobs:
job_docker_release:
name: Publish images
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up vars used in next step
id: vars
shell: bash
run: |
echo "IMAGE_TAG_CLEAN=$(echo ${{ inputs.image-tag }} | tr '/' '-' )" >> $GITHUB_OUTPUT
echo "GIT_HASH_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
echo "DATE_IN_SECS=$(date +%s)" >> $GITHUB_OUTPUT
- name: Build and Push image to Docker Hub and ghcr.io
uses: docker/build-push-action@v5
with:
context: .
# platforms: linux/amd64
push: true # true to upload image to registry
tags: |
vocdoni/vocdoni-node:latest,
vocdoni/vocdoni-node:${{ steps.vars.outputs.IMAGE_TAG_CLEAN }},
vocdoni/vocdoni-node:${{ steps.vars.outputs.IMAGE_TAG_CLEAN }}-${{ steps.vars.outputs.DATE_IN_SECS }}
vocdoni/vocdoni-node:commit-${{ steps.vars.outputs.GIT_HASH_SHORT }},
ghcr.io/vocdoni/vocdoni-node:latest,
ghcr.io/vocdoni/vocdoni-node:${{ steps.vars.outputs.IMAGE_TAG_CLEAN }},
ghcr.io/vocdoni/vocdoni-node:${{ steps.vars.outputs.IMAGE_TAG_CLEAN }}-${{ steps.vars.outputs.DATE_IN_SECS }}
ghcr.io/vocdoni/vocdoni-node:commit-${{ steps.vars.outputs.GIT_HASH_SHORT }},
cache-from: type=gha
cache-to: type=gha,mode=max