Skip to content

Merge pull request #2943 from faucetsdn/dependabot/pip/lib/poseidon_c… #1372

Merge pull request #2943 from faucetsdn/dependabot/pip/lib/poseidon_c…

Merge pull request #2943 from faucetsdn/dependabot/pip/lib/poseidon_c… #1372

Workflow file for this run

name: buildx
on:
push:
branches: main
tags: 'v*'
jobs:
buildx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
- name: Change for main
id: change_version
run: if [ "${{ steps.get_version.outputs.VERSION }}" == "main" ]; then echo ::set-output name=VERSION::latest; else echo ::set-output name=VERSION::${{ steps.get_version.outputs.VERSION }}; fi
- name: Set up qemu
uses: docker/setup-qemu-action@v2
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
version: latest
- name: Docker Login
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }}
run: |
echo "${DOCKER_PASSWORD}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
if: github.repository == 'iqtlabs/poseidon' && github.event_name == 'push'
- name: Build and push platforms
env:
DOCKER_CLI_EXPERIMENTAL: enabled
run: |
docker buildx build \
--platform linux/amd64,linux/arm64 \
--push \
-t iqtlabs/poseidon:${{ steps.change_version.outputs.VERSION }} . && \
docker buildx build \
--platform linux/amd64,linux/arm64 \
--push \
-t iqtlabs/poseidon-workers:${{ steps.change_version.outputs.VERSION }} workers
if: github.repository == 'iqtlabs/poseidon' && github.event_name == 'push'