i2pd/.github/workflows/docker.yml

71 lines
2.0 KiB
YAML
Raw Normal View History

2021-06-17 19:37:47 +03:00
name: Build containers
on:
push:
branches:
- openssl
tags:
- '*'
jobs:
docker:
runs-on: ubuntu-latest
2021-06-17 19:37:47 +03:00
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
2021-06-17 19:37:47 +03:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
2021-06-17 19:37:47 +03:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2021-06-17 19:37:47 +03:00
- name: Login to DockerHub
2021-06-17 20:07:10 +03:00
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container registry
uses: docker/login-action@v1
with:
registry: ghcr.io
2021-06-17 19:37:47 +03:00
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
2021-06-17 19:37:47 +03:00
- name: Build and push trunk container
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
uses: docker/build-push-action@v2
with:
2021-06-17 19:37:47 +03:00
context: ./contrib/docker
file: ./contrib/docker/Dockerfile
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7
push: true
2021-06-17 20:07:10 +03:00
tags: |
purplei2p/i2pd:latest
ghcr.io/purplei2p/i2pd:latest
- name: Set env
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- name: Build and push release container
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: docker/build-push-action@v2
with:
context: ./contrib/docker
file: ./contrib/docker/Dockerfile
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7
push: true
tags: |
purplei2p/i2pd:latest
purplei2p/i2pd:latest-release
purplei2p/i2pd:release-${{ env.RELEASE_VERSION }}
ghcr.io/purplei2p/i2pd:latest
ghcr.io/purplei2p/i2pd:latest-release
ghcr.io/purplei2p/i2pd:release-${{ env.RELEASE_VERSION }}