Skip to content

chore(deps): bump github.com/iand/microdata from 0.0.3 to 0.0.5 #73

chore(deps): bump github.com/iand/microdata from 0.0.3 to 0.0.5

chore(deps): bump github.com/iand/microdata from 0.0.3 to 0.0.5 #73

Workflow file for this run

name: Publish Docker Image
on:
push:
branches:
- '**'
tags:
- 'v*.*.*'
# pull_request:
# branches:
# - 'master'
jobs:
push_to_registries:
name: Push Docker image to multiple registries
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
-
name: Check out the repo
uses: actions/checkout@v3
-
name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: | # blacktop/scifgif
ghcr.io/${{ github.repository }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# -
# name: Docker Login
# uses: docker/login-action@v2
# with:
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
id: docker_build
uses: docker/build-push-action@v4
with:
tags: | # blacktop/scifgif:latest
ghcr.io/blacktop/scifgif:latest
platforms: linux/amd64,linux/arm64
labels: ${{ steps.meta.outputs.labels }}