-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add workflow to build and push docker image on tag (#354)
- Loading branch information
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Docker build on tag | ||
env: | ||
DOCKER_CLI_EXPERIMENTAL: enabled | ||
TAG_FMT: '^refs/tags/(((.?[0-9]+){3,4}))$' | ||
|
||
on: | ||
push: | ||
tags: | ||
- [0-9]+.[0-9]+.[0-9]+ | ||
- [0-9]+.[0-9]+.[0-9]+-* | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
name: Build and push iris-messenger image | ||
steps: | ||
- name: Set env variables | ||
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV | ||
|
||
- name: Show set environment variables | ||
run: | | ||
printf " TAG: %s\n" "$TAG" | ||
- name: Login to Docker for building | ||
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | ||
|
||
- name: Checkout project | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
id: qemu | ||
|
||
- name: Setup Docker buildx action | ||
uses: docker/setup-buildx-action@v1 | ||
id: buildx | ||
|
||
- name: Available platforms | ||
run: echo ${{ steps.buildx.outputs.platforms }} | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v2 | ||
id: cache | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Run Docker buildx against tag | ||
run: | | ||
docker buildx build \ | ||
--cache-from "type=local,src=/tmp/.buildx-cache" \ | ||
--cache-to "type=local,dest=/tmp/.buildx-cache" \ | ||
--platform linux/amd64,linux/arm64 \ | ||
--tag ${{ secrets.DOCKER_HUB_USER }}/iris-messenger:$TAG \ | ||
--output "type=registry" ./ | ||
- name: Run Docker buildx against latest | ||
run: | | ||
docker buildx build \ | ||
--cache-from "type=local,src=/tmp/.buildx-cache" \ | ||
--cache-to "type=local,dest=/tmp/.buildx-cache" \ | ||
--platform linux/amd64,linux/arm64 \ | ||
--tag ${{ secrets.DOCKER_HUB_USER }}/iris-messenger:latest \ | ||
--output "type=registry" ./ |