Skip to content

go.mod: bump pgx and storj.io/private, storj.io/storj (#86) #186

go.mod: bump pgx and storj.io/private, storj.io/storj (#86)

go.mod: bump pgx and storj.io/private, storj.io/storj (#86) #186

Workflow file for this run

name: Docker Image
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
storjlabs/ipfs-go-ds-storj
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- 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
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Docker image
uses: docker/build-push-action@v2
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}