mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.9 KiB
65 lines
1.9 KiB
name: Build containers |
|
|
|
on: [push] |
|
|
|
jobs: |
|
docker: |
|
runs-on: ubuntu-latest |
|
permissions: |
|
packages: write |
|
contents: read |
|
|
|
steps: |
|
- name: Checkout |
|
uses: actions/checkout@v2 |
|
|
|
- name: Set up QEMU |
|
uses: docker/setup-qemu-action@v1 |
|
|
|
- name: Set up Docker Buildx |
|
uses: docker/setup-buildx-action@v1 |
|
|
|
- name: Login to DockerHub |
|
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 |
|
username: ${{ github.actor }} |
|
password: ${{ secrets.GITHUB_TOKEN }} |
|
|
|
- name: Build and push trunk 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 |
|
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 }}
|
|
|